mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
8 lines
163 B
Rust
8 lines
163 B
Rust
enum Enum {
|
|
X = (1 << 500), //~ ERROR E0080
|
|
//~| attempt to shift left by `500_i32`, which would overflow
|
|
Y = (1 / 0) //~ ERROR E0080
|
|
}
|
|
|
|
fn main() {
|
|
}
|