rust/src/test/ui/eval-enum.rs
2018-12-25 21:08:33 -07:00

11 lines
270 B
Rust

enum Test {
DivZero = 1/0,
//~^ attempt to divide by zero
//~| ERROR evaluation of constant value failed
RemZero = 1%0,
//~^ attempt to calculate the remainder with a divisor of zero
//~| ERROR evaluation of constant value failed
}
fn main() {}