blob: e9cc78f3445ce197011df7368b3ed4a80e213ebb [file] [log] [blame]
struct S { a : i32, };
@group(0) @binding(0) var<storage, read_write> buf : S;
@compute @workgroup_size(1) fn main() {
let p : ptr<storage, i32, read_write> = &buf.a;
*p = 12;
}