summaryrefslogtreecommitdiffstats
path: root/tests/ui/nll/issue-52534-2.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/nll/issue-52534-2.stderr')
-rw-r--r--tests/ui/nll/issue-52534-2.stderr15
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/ui/nll/issue-52534-2.stderr b/tests/ui/nll/issue-52534-2.stderr
new file mode 100644
index 000000000..ac385e056
--- /dev/null
+++ b/tests/ui/nll/issue-52534-2.stderr
@@ -0,0 +1,15 @@
+error[E0597]: `x` does not live long enough
+ --> $DIR/issue-52534-2.rs:6:13
+ |
+LL | y = &x
+ | ^^ borrowed value does not live long enough
+LL |
+LL | }
+ | - `x` dropped here while still borrowed
+LL |
+LL | println!("{}", y);
+ | - borrow later used here
+
+error: aborting due to previous error
+
+For more information about this error, try `rustc --explain E0597`.