mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-17 11:42:15 +00:00
9 lines
197 B
Rust
9 lines
197 B
Rust
fn foo<'a>(x: &'a str) -> &'a str {
|
|
x
|
|
}
|
|
|
|
fn main() {
|
|
let _ = foo::<'static>;
|
|
//~^ ERROR cannot specify lifetime arguments explicitly if late bound lifetime parameters are present [E0794]
|
|
}
|