Sign in
rust
/
rust
/
8eb7c58dbb7b32701af113bc58722d0d1fefb1eb
/
.
/
src
/
test
/
ui
/
eval-enum.rs
blob: cf49b9614381788f4b9c6de30b04010fb4cc3ab6 [
file
]
enum
Test
{
DivZero
=
1
/
0
,
//~^ attempt to divide by zero
//~| ERROR evaluation of constant value failed
RemZero
=
1
%
0
,
//~^ attempt to calculate the remainder with a divisor of zero
//~| ERROR evaluation of constant value failed
}
fn
main
()
{}