mirror of
https://github.com/rust-lang/rust.git
synced 2025-12-01 04:18:27 +00:00
10 lines
200 B
Rust
10 lines
200 B
Rust
fn foo(x: &'a str) { } //~ ERROR E0261
|
|
//~| NOTE undeclared lifetime
|
|
|
|
struct Foo {
|
|
x: &'a str, //~ ERROR E0261
|
|
//~| NOTE undeclared lifetime
|
|
}
|
|
|
|
fn main() {}
|