diff options
| author | Rémy Rakic <remy.rakic+github@gmail.com> | 2021-08-03 19:09:44 +0200 |
|---|---|---|
| committer | Rémy Rakic <remy.rakic+github@gmail.com> | 2021-08-03 20:29:31 +0200 |
| commit | 84f24ccb6e016d86bee18c6985d5cafcb02990ae (patch) | |
| tree | 056cf250c278d9b7efafe384201ec4dac18f448a | |
| parent | f23d18b976387cf6a80d643943a29bcbbd9428fd (diff) | |
| download | rust-84f24ccb6e016d86bee18c6985d5cafcb02990ae.tar.gz rust-84f24ccb6e016d86bee18c6985d5cafcb02990ae.zip | |
delete expectations for `expect-region-supply-region`
The error output is now the same as the others, no need to bless anything.
| -rw-r--r-- | src/test/ui/closures/closure-expected-type/expect-region-supply-region.polonius.stderr | 56 |
1 files changed, 0 insertions, 56 deletions
diff --git a/src/test/ui/closures/closure-expected-type/expect-region-supply-region.polonius.stderr b/src/test/ui/closures/closure-expected-type/expect-region-supply-region.polonius.stderr deleted file mode 100644 index df60416709f..00000000000 --- a/src/test/ui/closures/closure-expected-type/expect-region-supply-region.polonius.stderr +++ /dev/null @@ -1,56 +0,0 @@ -error[E0521]: borrowed data escapes outside of closure - --> $DIR/expect-region-supply-region.rs:18:9 - | -LL | let mut f: Option<&u32> = None; - | ----- `f` declared here, outside of the closure body -LL | closure_expecting_bound(|x| { - | - `x` is a reference that is only valid in the closure body -LL | f = Some(x); - | ^^^^^^^^^^^ `x` escapes the closure body here - -error[E0521]: borrowed data escapes outside of closure - --> $DIR/expect-region-supply-region.rs:28:9 - | -LL | let mut f: Option<&u32> = None; - | ----- `f` declared here, outside of the closure body -LL | closure_expecting_bound(|x: &u32| { - | - `x` is a reference that is only valid in the closure body -LL | f = Some(x); - | ^^^^^^^^^^^ `x` escapes the closure body here - -error: lifetime may not live long enough - --> $DIR/expect-region-supply-region.rs:37:30 - | -LL | fn expect_bound_supply_named<'x>() { - | -- lifetime `'x` defined here -... -LL | closure_expecting_bound(|x: &'x u32| { - | ^ - let's call the lifetime of this reference `'1` - | | - | requires that `'1` must outlive `'x` - -error[E0521]: borrowed data escapes outside of closure - --> $DIR/expect-region-supply-region.rs:42:9 - | -LL | let mut f: Option<&u32> = None; - | ----- `f` declared here, outside of the closure body -... -LL | closure_expecting_bound(|x: &'x u32| { - | - `x` is a reference that is only valid in the closure body -... -LL | f = Some(x); - | ^^^^^^^^^^^ `x` escapes the closure body here - -error: lifetime may not live long enough - --> $DIR/expect-region-supply-region.rs:37:30 - | -LL | fn expect_bound_supply_named<'x>() { - | -- lifetime `'x` defined here -... -LL | closure_expecting_bound(|x: &'x u32| { - | ^ requires that `'x` must outlive `'static` - | - = help: consider replacing `'x` with `'static` - -error: aborting due to 5 previous errors - |
