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

7 lines
154 B
Rust
Raw Normal View History

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