blob: 13980b3e4a48007af529b8fb4ecf3379cf675be0 [file] [log] [blame]
SKIP: FAILED
var<private> a : i32;
var<private> b : f32;
fn foo(maybe_zero : i32) {
a /= 0;
a %= 0;
a /= maybe_zero;
a %= maybe_zero;
b /= 0.0;
b %= 0.0;
b /= f32(maybe_zero);
b %= f32(maybe_zero);
}
Failed to generate: Unknown statement: tint::ast::CompoundAssignmentStatement