rust/tests/ui/consts/eval-enum.rs
2025-04-08 23:06:31 +03:00

10 lines
303 B
Rust

enum Test {
DivZero = 1/0,
//~^ NOTE attempt to divide `1_isize` by zero
//~| ERROR evaluation of constant value failed
RemZero = 1%0,
//~^ NOTE attempt to calculate the remainder of `1_isize` with a divisor of zero
//~| ERROR evaluation of constant value failed
}
fn main() {}