mirror of
https://github.com/rust-lang/rust.git
synced 2026-04-27 18:57:42 +03:00
9 lines
159 B
Rust
9 lines
159 B
Rust
//@ compile-flags: -g -Copt-level=0 -Z verify-llvm-ir
|
|
//@ known-bug: #34127
|
|
//@ only-64bit
|
|
//@ ignore-backends: gcc
|
|
|
|
pub fn main() {
|
|
let _a = [(); 1 << 63];
|
|
}
|