blob: a9c0ea68bf40dd0264dc5e57ccf8288ef85748ca [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
struct S {
int i;
};
struct tint_module_vars_struct {
thread S* V;
};
void main_1(tint_module_vars_struct tint_module_vars) {
(*tint_module_vars.V).i = 5;
}
kernel void tint_symbol() {
thread S V = {};
tint_module_vars_struct const tint_module_vars = tint_module_vars_struct{.V=(&V)};
main_1(tint_module_vars);
}