mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
10 lines
185 B
Rust
10 lines
185 B
Rust
#![allow(dead_code)]
|
|
|
|
fn bar<'a, 'b>() -> fn(&'a u32, &'b u32) -> &'a u32 {
|
|
let g: fn(_, _) -> _ = |_x, y| y;
|
|
g
|
|
//~^ ERROR lifetime may not live long enough
|
|
}
|
|
|
|
fn main() {}
|