blob: 05d0dba5953a81057cf0153ea5b5f7e97d3b8a0f [file]
struct S {
a : vec4<i32>,
}
@group(0) @binding(0)
var<storage, read_write> v : S;
@compute @workgroup_size(1)
fn foo() {
v.a ^= vec4<i32>(2);
}