Sign in
rust
/
rust
/
97b1c314892ef4497c0ce5656daa3a54c4e052d3
/
.
/
tests
/
ui
/
consts
/
eval-enum.rs
blob: ae0296bd4c092600e06c877f1f6ebf6f86d2505c [
file
]
enum
Test
{
DivZero
=
1
/
0
,
//~^ ERROR attempt to divide `1_isize` by zero
RemZero
=
1
%
0
,
//~^ ERROR attempt to calculate the remainder of `1_isize` with a divisor of zero
}
fn
main
()
{}