]> git.lizzy.rs Git - rust.git/blob - src/test/ui/error-codes/E0261.rs
Merge commit '05677b6bd6c938ed760835d9b1f6514992654ae3' into sync_cg_clif-2021-08-06
[rust.git] / src / test / ui / error-codes / E0261.rs
1 fn foo(x: &'a str) { } //~ ERROR E0261
2                        //~| undeclared lifetime
3
4 struct Foo {
5     x: &'a str, //~ ERROR E0261
6                 //~| undeclared lifetime
7 }
8
9 fn main() {}