rust/src/test/compile-fail/eval-enum.rs
2013-04-24 14:20:00 +10:00

7 lines
210 B
Rust

enum test {
quot_zero = 1/0, //~ERROR expected constant: attempted quotient with a divisor of zero
rem_zero = 1%0 //~ERROR expected constant: attempted remainder with a divisor of zero
}
fn main() {}