blob: 2a4545fc43d08d193293e3b8ec95fd9ace0ab77b [file] [log] [blame]
error[E0637]: `'_` cannot be used here
--> $DIR/E0637.rs:11:16
|
LL | struct Foo<'a: '_>(&'a u8); //~ ERROR cannot be used here
| ^^ `'_` is a reserved lifetime name
error[E0637]: `'_` cannot be used here
--> $DIR/E0637.rs:12:12
|
LL | fn foo<'a: '_>(_: &'a u8) {} //~ ERROR cannot be used here
| ^^ `'_` is a reserved lifetime name
error[E0637]: `'_` cannot be used here
--> $DIR/E0637.rs:15:10
|
LL | impl<'a: '_> Bar<'a> { //~ ERROR cannot be used here
| ^^ `'_` is a reserved lifetime name
error: aborting due to 3 previous errors
For more information about this error, try `rustc --explain E0637`.