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

7 lines
151 B
Rust
Raw Normal View History

enum test {
div_zero = 1/0, //~ERROR expected constant: divide by zero
rem_zero = 1%0 //~ERROR expected constant: modulo zero
}
fn main() {}