blob: 8674a925c110d76aa984e074b069a81495407823 [file] [log] [blame]
error[E0637]: `'_` cannot be used here
--> $DIR/where-clauses.rs:3:10
|
LL | impl<'b: '_> Foo<'b> for i32 {}
| ^^ `'_` 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> {}
| ^^ `'_` is a reserved lifetime name
error: aborting due to 2 previous errors