mirror of
https://git.proxmox.com/git/rustc
synced 2025-11-03 17:30:24 +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() {}
|