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