mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 23:04:33 +00:00
12 lines
339 B
Rust
12 lines
339 B
Rust
// Version of `tests/ui/consts/const-eval/heap/alloc_intrinsic_untyped.rs` without the flag that
|
|
// suppresses the ICE.
|
|
//@ known-bug: #129233
|
|
#![feature(core_intrinsics)]
|
|
#![feature(const_heap)]
|
|
#![feature(const_mut_refs)]
|
|
use std::intrinsics;
|
|
|
|
const BAR: *mut i32 = unsafe { intrinsics::const_allocate(4, 4) as *mut i32 };
|
|
|
|
fn main() {}
|