blob: f0aff222fed9cdd2bbb128571c2d7feb968befe0 [file] [log] [blame]
struct S {
a : mat4x4<f32>,
}
@group(0) @binding(0) var<storage, read_write> v : S;
fn foo() {
v.a -= mat4x4<f32>();
}