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