summaryrefslogtreecommitdiffstats
path: root/tests/ui/lto/issue-100772.rs
blob: eeb511962362b8d9312403a870b87fa91593c89f (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);
}