mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
24 lines
490 B
Rust
24 lines
490 B
Rust
// skip-filecheck
|
|
// This is a miscompilation, #111005 to track
|
|
|
|
// unit-test: RenameReturnPlace
|
|
|
|
#![feature(custom_mir, core_intrinsics)]
|
|
extern crate core;
|
|
use core::intrinsics::mir::*;
|
|
|
|
// EMIT_MIR nrvo_miscompile_111005.wrong.RenameReturnPlace.diff
|
|
#[custom_mir(dialect = "runtime", phase = "initial")]
|
|
pub fn wrong(arg: char) -> char {
|
|
mir!({
|
|
let temp = arg;
|
|
RET = temp;
|
|
temp = 'b';
|
|
Return()
|
|
})
|
|
}
|
|
|
|
fn main() {
|
|
assert_eq!(wrong('a'), 'a');
|
|
}
|