blob: 1fc9cced3546f3c1541f0be83ec1056ecb7f4bf1 [file] [log] [blame]
struct S {
a : vec4<f32>,
}
@group(0) @binding(0) var<storage, read_write> v : S;
fn foo() {
v.a /= 2.0;
}