mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-02 11:44:28 +00:00
15 lines
313 B
Rust
15 lines
313 B
Rust
// unit-test: ConstProp
|
|
// compile-flags: -O
|
|
// ignore-emscripten compiled with panic=abort by default
|
|
// ignore-wasm32
|
|
// ignore-wasm64
|
|
|
|
#![feature(box_syntax)]
|
|
|
|
// Note: this test verifies that we, in fact, do not const prop `box`
|
|
|
|
// EMIT_MIR boxes.main.ConstProp.diff
|
|
fn main() {
|
|
let x = *(box 42) + 0;
|
|
}
|