mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
9 lines
185 B
Rust
9 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() {}
|