blob: 0291d9d437db9a9b4482865a88bf64d77c11c4b9 [file] [log] [blame]
struct S {
a : vec4<i32>,
}
@group(0) @binding(0)
var<storage, read_write> v : S;
fn foo() {
v.a %= 2;
}