Skip to content

Commit

Permalink
Fully stabilize NLL
Browse files Browse the repository at this point in the history
  • Loading branch information
jackh726 committed Jun 3, 2022
1 parent 5730482 commit 1fad953
Showing 1 changed file with 9 additions and 13 deletions.
22 changes: 9 additions & 13 deletions tests/ui/crashes/ice-6256.stderr
Original file line number Diff line number Diff line change
@@ -1,18 +1,14 @@
error[E0308]: mismatched types
--> $DIR/ice-6256.rs:13:28
error[E0521]: borrowed data escapes outside of closure
--> $DIR/ice-6256.rs:13:26
|
LL | let f = |x: &dyn TT| x.func(); //[default]~ ERROR: mismatched types
| ^^^^ lifetime mismatch
|
= note: expected reference `&(dyn TT + 'static)`
found reference `&dyn TT`
note: the anonymous lifetime #1 defined here...
--> $DIR/ice-6256.rs:13:13
|
LL | let f = |x: &dyn TT| x.func(); //[default]~ ERROR: mismatched types
| ^^^^^^^^^^^^^^^^^^^^^
= note: ...does not necessarily outlive the static lifetime
| - - ^^^^^^^^
| | | |
| | | `x` escapes the closure body here
| | | argument requires that `'1` must outlive `'static`
| | let's call the lifetime of this reference `'1`
| `x` is a reference that is only valid in the closure body

error: aborting due to previous error

For more information about this error, try `rustc --explain E0308`.
For more information about this error, try `rustc --explain E0521`.

0 comments on commit 1fad953

Please sign in to comment.