mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-17 11:38:19 +00:00
11 lines
115 B
Rust
11 lines
115 B
Rust
fn foo<T: 'static>() { }
|
|
|
|
fn boo<'a>() {
|
|
return;
|
|
|
|
let x = foo::<&'a u32>();
|
|
//~^ ERROR
|
|
}
|
|
|
|
fn main() {}
|