@@ -3,36 +3,48 @@ error[E0637]: `'_` cannot be used here
33 |
44LL | impl<'_> IceCube<'_> {}
55 | ^^ `'_` is a reserved lifetime name
6+ |
7+ = help: use another lifetime specifier
68
79error[E0637]: `'_` cannot be used here
810 --> $DIR/in-binder.rs:12:15
911 |
1012LL | struct Struct<'_> {
1113 | ^^ `'_` is a reserved lifetime name
14+ |
15+ = help: use another lifetime specifier
1216
1317error[E0637]: `'_` cannot be used here
1418 --> $DIR/in-binder.rs:17:11
1519 |
1620LL | enum Enum<'_> {
1721 | ^^ `'_` is a reserved lifetime name
22+ |
23+ = help: use another lifetime specifier
1824
1925error[E0637]: `'_` cannot be used here
2026 --> $DIR/in-binder.rs:22:13
2127 |
2228LL | union Union<'_> {
2329 | ^^ `'_` is a reserved lifetime name
30+ |
31+ = help: use another lifetime specifier
2432
2533error[E0637]: `'_` cannot be used here
2634 --> $DIR/in-binder.rs:27:13
2735 |
2836LL | trait Trait<'_> {
2937 | ^^ `'_` is a reserved lifetime name
38+ |
39+ = help: use another lifetime specifier
3040
3141error[E0637]: `'_` cannot be used here
3242 --> $DIR/in-binder.rs:31:8
3343 |
3444LL | fn foo<'_>() {
3545 | ^^ `'_` is a reserved lifetime name
46+ |
47+ = help: use another lifetime specifier
3648
3749error: aborting due to 6 previous errors
3850
0 commit comments