mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
9 lines
160 B
Rust
9 lines
160 B
Rust
fn foo(_: &'static u32) {}
|
|
|
|
fn unpromotable<T>(t: T) -> T { t }
|
|
|
|
fn main() {
|
|
foo(&unpromotable(5u32));
|
|
}
|
|
//~^^ ERROR temporary value dropped while borrowed
|