diff options
| author | Matthew Jasper <mjjasper1@gmail.com> | 2018-08-05 14:33:38 +0100 |
|---|---|---|
| committer | Matthew Jasper <mjjasper1@gmail.com> | 2018-08-05 14:33:38 +0100 |
| commit | f72b8a44c51313d384deefcda753df668f2e265e (patch) | |
| tree | 614c7ac810f1a856109e586a1d713f22f193e088 /src/test/ui/error-codes | |
| parent | ddcf17e1ed577bad26e92db3c25499620f853a49 (diff) | |
| download | rust-f72b8a44c51313d384deefcda753df668f2e265e.tar.gz rust-f72b8a44c51313d384deefcda753df668f2e265e.zip | |
Use span of the closure args in free region errors
Diffstat (limited to 'src/test/ui/error-codes')
| -rw-r--r-- | src/test/ui/error-codes/E0621-does-not-trigger-for-closures.nll.stderr | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/test/ui/error-codes/E0621-does-not-trigger-for-closures.nll.stderr b/src/test/ui/error-codes/E0621-does-not-trigger-for-closures.nll.stderr index 0ac295c54bc..27a51cb83fb 100644 --- a/src/test/ui/error-codes/E0621-does-not-trigger-for-closures.nll.stderr +++ b/src/test/ui/error-codes/E0621-does-not-trigger-for-closures.nll.stderr @@ -8,9 +8,8 @@ error: unsatisfied lifetime constraints --> $DIR/E0621-does-not-trigger-for-closures.rs:25:26 | LL | invoke(&x, |a, b| if a > b { a } else { b }); //~ ERROR E0495 - | ----------^^^^^----------------- - | | | | - | | | requires that `'1` must outlive `'2` + | ------ ^^^^^ requires that `'1` must outlive `'2` + | | | | | has type `&'1 i32` | lifetime `'2` appears in return type |
