blob: 180e7d96bb3d2db8a80670aa0b0ab2966b25c0ed [file] [log] [blame]
[[stage(compute), workgroup_size(1)]]
fn f() {
let a = vec3<f32>(1.0, 2.0, 3.0);
let b = vec3<f32>(0.0, 5.0, 0.0);
let r : vec3<f32> = (a % b);
}