mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
14 lines
237 B
Rust
14 lines
237 B
Rust
//
|
|
// no-system-llvm
|
|
// compile-flags: -O
|
|
#![crate_type="lib"]
|
|
|
|
#[no_mangle]
|
|
pub fn alloc_test(data: u32) {
|
|
// CHECK-LABEL: @alloc_test
|
|
// CHECK-NEXT: start:
|
|
// CHECK-NEXT: ret void
|
|
let x = Box::new(data);
|
|
drop(x);
|
|
}
|