blob: 2cef97d65083cf1f82f03f1026be294b6b407c21 [file] [log] [blame]
@group(0) @binding(0) var<storage, read_write> s: f32;
@compute @workgroup_size(1)
fn main() {
var m : mat3x3<f32>;
let v : vec3<f32> = m[1];
let f : f32 = v[1];
s = f;
}