summaryrefslogtreecommitdiffstats
path: root/src/test/ui/nll/issue-58053.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/nll/issue-58053.stderr')
-rw-r--r--src/test/ui/nll/issue-58053.stderr20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/test/ui/nll/issue-58053.stderr b/src/test/ui/nll/issue-58053.stderr
new file mode 100644
index 000000000..bf7416e1a
--- /dev/null
+++ b/src/test/ui/nll/issue-58053.stderr
@@ -0,0 +1,20 @@
+error: lifetime may not live long enough
+ --> $DIR/issue-58053.rs:4:33
+ |
+LL | let f = |x: &i32| -> &i32 { x };
+ | - - ^ returning this value requires that `'1` must outlive `'2`
+ | | |
+ | | let's call the lifetime of this reference `'2`
+ | let's call the lifetime of this reference `'1`
+
+error: lifetime may not live long enough
+ --> $DIR/issue-58053.rs:8:25
+ |
+LL | let g = |x: &i32| { x };
+ | - - ^ returning this value requires that `'1` must outlive `'2`
+ | | |
+ | | return type of closure is &'2 i32
+ | let's call the lifetime of this reference `'1`
+
+error: aborting due to 2 previous errors
+