blob: 1d25d8adbd6be733a4457e7b36d752a146055c45 [file] [log] [blame]
struct S {
x : i32,
a : atomic<u32>,
b : atomic<u32>,
}
var<workgroup> wg : S;
@compute @workgroup_size(1)
fn compute_main() {
atomicStore(&(wg.a), 1u);
atomicStore(&(wg.b), 2u);
}