1
Fork 0
rust/tests/ui/error-codes/E0262.rs
2025-04-08 23:06:31 +03:00

4 lines
150 B
Rust

fn foo<'static>(x: &'static str) { } //~ ERROR E0262
//~| NOTE 'static is a reserved lifetime name
fn main() {}