summaryrefslogtreecommitdiffstats
path: root/tests/ui/nll/issue-52533-1.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/nll/issue-52533-1.stderr')
-rw-r--r--tests/ui/nll/issue-52533-1.stderr11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/ui/nll/issue-52533-1.stderr b/tests/ui/nll/issue-52533-1.stderr
new file mode 100644
index 000000000..20f19b259
--- /dev/null
+++ b/tests/ui/nll/issue-52533-1.stderr
@@ -0,0 +1,11 @@
+error: lifetime may not live long enough
+ --> $DIR/issue-52533-1.rs:9:18
+ |
+LL | gimme(|x, y| y)
+ | - - ^ closure was supposed to return data with lifetime `'2` but it is returning data with lifetime `'1`
+ | | |
+ | | has type `&Foo<'_, '1, u32>`
+ | has type `&Foo<'_, '2, u32>`
+
+error: aborting due to previous error
+