blob: 978dc4636110bb5951014c6a6afaed3aee7630db [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
struct tint_module_vars_struct {
device int* s;
};
struct _A {
int _B;
};
kernel void f(device int* s [[buffer(0)]]) {
tint_module_vars_struct const tint_module_vars = {.s=s};
_A const c = _A{};
int const d = c._B;
(*tint_module_vars.s) = (c._B + d);
}