mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
13 lines
210 B
Rust
13 lines
210 B
Rust
//@ run-rustfix
|
|
fn id<T>(x: T) -> T { x }
|
|
|
|
fn main() {
|
|
let v = vec![
|
|
&id(3)
|
|
];
|
|
//~^^ ERROR temporary value dropped while borrowed
|
|
|
|
for &&x in &v {
|
|
println!("{}", x + 3);
|
|
}
|
|
}
|