summaryrefslogtreecommitdiffstats
path: root/src/test/ui/nll/issue-52213.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/nll/issue-52213.stderr')
-rw-r--r--src/test/ui/nll/issue-52213.stderr15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/test/ui/nll/issue-52213.stderr b/src/test/ui/nll/issue-52213.stderr
new file mode 100644
index 000000000..da31bcd54
--- /dev/null
+++ b/src/test/ui/nll/issue-52213.stderr
@@ -0,0 +1,15 @@
+error: lifetime may not live long enough
+ --> $DIR/issue-52213.rs:3:20
+ |
+LL | fn transmute_lifetime<'a, 'b, T>(t: &'a (T,)) -> &'b T {
+ | -- -- lifetime `'b` defined here
+ | |
+ | lifetime `'a` defined here
+LL | match (&t,) {
+LL | ((u,),) => u,
+ | ^ function was supposed to return data with lifetime `'b` but it is returning data with lifetime `'a`
+ |
+ = help: consider adding the following bound: `'a: 'b`
+
+error: aborting due to previous error
+