blob: ecef085e895c81441479eca7e5da0bbfb3fa5532 [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);
}