summaryrefslogtreecommitdiffstats
path: root/src/test/ui/nll/closure-requirements/return-wrong-bound-region.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/nll/closure-requirements/return-wrong-bound-region.stderr')
-rw-r--r--src/test/ui/nll/closure-requirements/return-wrong-bound-region.stderr31
1 files changed, 0 insertions, 31 deletions
diff --git a/src/test/ui/nll/closure-requirements/return-wrong-bound-region.stderr b/src/test/ui/nll/closure-requirements/return-wrong-bound-region.stderr
deleted file mode 100644
index 6db72b886..000000000
--- a/src/test/ui/nll/closure-requirements/return-wrong-bound-region.stderr
+++ /dev/null
@@ -1,31 +0,0 @@
-note: no external requirements
- --> $DIR/return-wrong-bound-region.rs:11:16
- |
-LL | expect_sig(|a, b| b); // ought to return `a`
- | ^^^^^^
- |
- = note: defining type: test::{closure#0} with closure substs [
- i16,
- for<Region(BrAnon(0, None)), Region(BrAnon(1, None))> extern "rust-call" fn((&ReLateBound(DebruijnIndex(0), BoundRegion { var: 0, kind: BrAnon(0, None) }) i32, &ReLateBound(DebruijnIndex(0), BoundRegion { var: 1, kind: BrAnon(1, None) }) i32)) -> &ReLateBound(DebruijnIndex(0), BoundRegion { var: 0, kind: BrAnon(0, None) }) i32,
- (),
- ]
-
-error: lifetime may not live long enough
- --> $DIR/return-wrong-bound-region.rs:11:23
- |
-LL | expect_sig(|a, b| b); // ought to return `a`
- | - - ^ closure was supposed to return data with lifetime `'2` but it is returning data with lifetime `'1`
- | | |
- | | has type `&'1 i32`
- | has type `&'2 i32`
-
-note: no external requirements
- --> $DIR/return-wrong-bound-region.rs:10:1
- |
-LL | fn test() {
- | ^^^^^^^^^
- |
- = note: defining type: test
-
-error: aborting due to previous error
-