blob: b3998ed113c03008a363abf8dfc71c72cc9416c8 [file] [log] [blame]
@compute @workgroup_size(1)
fn f() {
var a = vec3<f32>(1.0, 2.0, 3.0);
var b = vec3<f32>(0.0, 5.0, 0.0);
let r : vec3<f32> = (a / (b + b));
}