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