rust/tests/ui/lto/issue-100772.rs
Ramon de C Valle f837c48f0d CFI: Fix error compiling core with LLVM CFI enabled
Fix #90546 by filtering out global value function pointer types from the
type tests, and adding the LowerTypeTests pass to the rustc LTO
optimization pipelines.
2023-08-07 15:59:15 -07:00

12 lines
276 B
Rust

// build-pass
// needs-sanitizer-cfi
// compile-flags: -Ccodegen-units=1 -Clto -Ctarget-feature=-crt-static -Zsanitizer=cfi
// no-prefer-dynamic
// only-x86_64-unknown-linux-gnu
#![feature(allocator_api)]
fn main() {
let _ = Box::new_in(&[0, 1], &std::alloc::Global);
}