2018-10-11 19:51:44 +00:00
|
|
|
error[E0637]: `'_` cannot be used here
|
2018-10-19 20:39:41 +00:00
|
|
|
--> $DIR/where-clauses.rs:3:10
|
2018-10-11 19:51:44 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | impl<'b: '_> Foo<'b> for i32 {}
|
2018-10-11 19:51:44 +00:00
|
|
|
| ^^ `'_` is a reserved lifetime name
|
|
|
|
|
2018-10-19 20:39:41 +00:00
|
|
|
error[E0637]: `'_` cannot be used here
|
|
|
|
--> $DIR/where-clauses.rs:5:9
|
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | impl<T: '_> Foo<'static> for Vec<T> {}
|
2018-10-19 20:39:41 +00:00
|
|
|
| ^^ `'_` is a reserved lifetime name
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
2018-10-11 19:51:44 +00:00
|
|
|
|
2020-02-07 17:44:31 +00:00
|
|
|
For more information about this error, try `rustc --explain E0637`.
|