diff options
| author | Jack Huey <31162821+jackh726@users.noreply.github.com> | 2022-04-01 13:13:25 -0400 |
|---|---|---|
| committer | Jack Huey <31162821+jackh726@users.noreply.github.com> | 2022-06-03 17:16:41 -0400 |
| commit | 1fad95309bcac3d28f75afdd45ded51a890c1940 (patch) | |
| tree | 4f4082439358a85c3472e9c6aa257524f9481e3c | |
| parent | 57304823dbd1c246d1166e85c156e694d2f7a184 (diff) | |
| download | rust-1fad95309bcac3d28f75afdd45ded51a890c1940.tar.gz rust-1fad95309bcac3d28f75afdd45ded51a890c1940.zip | |
Fully stabilize NLL
| -rw-r--r-- | tests/ui/crashes/ice-6256.stderr | 22 |
1 files changed, 9 insertions, 13 deletions
diff --git a/tests/ui/crashes/ice-6256.stderr b/tests/ui/crashes/ice-6256.stderr index ae4e6cad332..9cfcccf1e3c 100644 --- a/tests/ui/crashes/ice-6256.stderr +++ b/tests/ui/crashes/ice-6256.stderr @@ -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`. |
