blob: 0291d9d437db9a9b4482865a88bf64d77c11c4b9 [file] [log] [blame]
James Price555c2562022-03-31 22:30:10 +00001struct S {
2 a : vec4<i32>,
3}
4@group(0) @binding(0)
5var<storage, read_write> v : S;
6
7fn foo() {
8 v.a %= 2;
9}