rust/src/test/ui/nll/borrowed-temporary-error.rs

15 lines
228 B
Rust
Raw Normal View History

#![feature(nll)]
fn gimme(x: &(u32,)) -> &u32 {
&x.0
}
fn main() {
let x = gimme({
let v = 22;
&(v,)
//~^ ERROR temporary value dropped while borrowed [E0716]
});
println!("{:?}", x);
}