blob: 57fe2456f4cc52dbb42d6ba5d8e0be126329f12a [file] [log] [blame]
error[E0637]: `'_` cannot be used here
--> $DIR/where-clauses.rs:3:10
|
LL | impl<'b: '_> Foo<'b> for i32 {} //~ ERROR `'_` cannot be used here
| ^^ `'_` is a reserved lifetime name
error[E0637]: `'_` cannot be used here
--> $DIR/where-clauses.rs:5:9
|
LL | impl<T: '_> Foo<'static> for Vec<T> {} //~ ERROR `'_` cannot be used here
| ^^ `'_` is a reserved lifetime name
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0637`.