mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
12 lines
256 B
Rust
12 lines
256 B
Rust
// run-pass
|
|
// needs-sanitizer-cfi
|
|
// compile-flags: -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);
|
|
}
|