about summary refs log tree commit diff
path: root/tests/ui/lto/issue-100772.rs
blob: 29ec5b9bf96475a9df97f08986d3f6e8e48391b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
//@ 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);
}