blob: 5076b67e18b255a5773bfecd52c91003e3d2215b [file] [log] [blame]
struct S {
x : i32,
a : atomic<u32>,
y : u32,
}
var<workgroup> wg : S;
@compute @workgroup_size(1)
fn compute_main() {
let p0 = &(wg);
let p1 = &((*(p0)).a);
atomicStore(p1, 1u);
}