blob: ac2959fcd38535964a29fabd42a7fb1f426df5ef [file] [log] [blame]
// error-pattern:attempt to calculate the remainder with a divisor of zero
fn main() {
let y = 0;
let _z = 1 % y;
}