1
1
error[E0261]: use of undeclared lifetime name `'missing`
2
- --> $DIR/lifetime-resolution.rs:8 :28
2
+ --> $DIR/lifetime-resolution.rs:7 :28
3
3
|
4
4
LL | let missing: unsafe<> &'missing ();
5
5
| ^^^^^^^^ undeclared lifetime
@@ -15,7 +15,7 @@ LL | fn foo<'missing, 'a>() {
15
15
| +++++++++
16
16
17
17
error[E0401]: can't use generic parameters from outer item
18
- --> $DIR/lifetime-resolution.rs:13 :30
18
+ --> $DIR/lifetime-resolution.rs:11 :30
19
19
|
20
20
LL | fn foo<'a>() {
21
21
| -- lifetime parameter from outer item
@@ -41,25 +41,7 @@ LL | #![feature(unsafe_binders)]
41
41
= note: see issue #130516 <https://github.com/rust-lang/rust/issues/130516> for more information
42
42
= note: `#[warn(incomplete_features)]` on by default
43
43
44
- error: unsafe binders are not yet implemented
45
- --> $DIR/lifetime-resolution.rs:5:15
46
- |
47
- LL | let good: unsafe<'b> &'a &'b ();
48
- | ^^^^^^^^^^^^^^^^^^^^^
49
-
50
- error: unsafe binders are not yet implemented
51
- --> $DIR/lifetime-resolution.rs:8:18
52
- |
53
- LL | let missing: unsafe<> &'missing ();
54
- | ^^^^^^^^^^^^^^^^^^^^^
55
-
56
- error: unsafe binders are not yet implemented
57
- --> $DIR/lifetime-resolution.rs:13:20
58
- |
59
- LL | let outer: unsafe<> &'a &'b ();
60
- | ^^^^^^^^^^^^^^^^^^^
61
-
62
- error: aborting due to 5 previous errors; 1 warning emitted
44
+ error: aborting due to 2 previous errors; 1 warning emitted
63
45
64
46
Some errors have detailed explanations: E0261, E0401.
65
47
For more information about an error, try `rustc --explain E0261`.
0 commit comments