Sign in
◑
Theme
rust
/
rust
/
8a7e1d75b2e2f4a2e89420130bca8d8d97f9074e
/
.
/
tests
/
ui
/
error-codes
/
E0080.rs
blob: 0d19f02a9f1087c1b1c49af561cee054d8d416c1 [
file
]
enum
Enum
{
X
=
(
1
<<
500
),
//~ ERROR attempt to shift left by `500_i32`, which would overflow
Y
=
(
1
/
0
),
//~ ERROR attempt to divide `1_isize` by zero
}
fn
main
()
{}