rust/tests/ui/span/issue-15480.fixed

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
237 B
Rust
Raw Normal View History

//@ run-rustfix
fn id<T>(x: T) -> T { x }
fn main() {
let binding = id(3);
let v = vec![
&binding
];
//~^^ ERROR temporary value dropped while borrowed
for &&x in &v {
println!("{}", x + 3);
}
}