granite-rust/tests/crashes/34127.rs
Nikita Popov fc9f727c7c Fix tests that rely on LLVM IR verification
Pass -Z verify-llvm-ir to tests that rely on it, to make sure they
pass regardless of the value of verify-llvm-ir in config.toml.

Also remove the 109681.rs test, because it is a duplicat of
common-linkage-non-zero-init.rs.
2024-11-29 19:11:34 +01:00

7 lines
135 B
Rust

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