blob: 327ff88f3c85915480db1409fa6cd2c58ec5dec6 [file]
struct S {
a : vec4<f32>,
}
@group(0) @binding(0) var<storage, read_write> v : S;
@compute @workgroup_size(1)
fn foo() {
v.a += 2.0;
}