mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
11 lines
195 B
Rust
11 lines
195 B
Rust
#![feature(fn_traits)]
|
|
|
|
fn id<T>(x: T) -> T { x }
|
|
|
|
pub fn foo<'a, F: Fn(&'a ())>(bar: F) {
|
|
bar.call((
|
|
&id(()), //~ ERROR temporary value dropped while borrowed
|
|
));
|
|
}
|
|
fn main() {}
|