mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
17 lines
397 B
Rust
17 lines
397 B
Rust
// skip-filecheck
|
|
// EMIT_MIR_FOR_EACH_PANIC_STRATEGY
|
|
//! Copy of `nrvo-simple.rs`, to ensure that full dest-prop handles it too.
|
|
// unit-test: DestinationPropagation
|
|
// EMIT_MIR simple.nrvo.DestinationPropagation.diff
|
|
fn nrvo(init: fn(&mut [u8; 1024])) -> [u8; 1024] {
|
|
let mut buf = [0; 1024];
|
|
init(&mut buf);
|
|
buf
|
|
}
|
|
|
|
fn main() {
|
|
let _ = nrvo(|buf| {
|
|
buf[4] = 4;
|
|
});
|
|
}
|