rust/tests/crashes/34127.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
117 B
Rust
Raw Normal View History

//@ compile-flags: -g -Copt-level=0
//@ known-bug: #34127
//@ only-x86_64
pub fn main() {
let _a = [(); 1 << 63];
}