rust/src/test/compile-fail/eval-enum.rs

7 lines
195 B
Rust
Raw Normal View History

enum test {
2013-05-01 15:40:05 +10:00
div_zero = 1/0, //~ERROR expected constant: attempted to divide by zero
2013-04-24 13:01:38 +10:00
rem_zero = 1%0 //~ERROR expected constant: attempted remainder with a divisor of zero
}
fn main() {}