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