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

7 lines
210 B
Rust
Raw Normal View History

enum test {
2013-04-23 22:01:38 -05:00
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() {}