summaryrefslogtreecommitdiffstats
path: root/tests/ui/self/issue-61882-2.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/self/issue-61882-2.stderr')
-rw-r--r--tests/ui/self/issue-61882-2.stderr15
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/ui/self/issue-61882-2.stderr b/tests/ui/self/issue-61882-2.stderr
new file mode 100644
index 000000000..0b8e134c9
--- /dev/null
+++ b/tests/ui/self/issue-61882-2.stderr
@@ -0,0 +1,15 @@
+error[E0597]: `x` does not live long enough
+ --> $DIR/issue-61882-2.rs:6:14
+ |
+LL | Self(&x);
+ | ^^
+ | |
+ | borrowed value does not live long enough
+ | this usage requires that `x` is borrowed for `'static`
+LL |
+LL | }
+ | - `x` dropped here while still borrowed
+
+error: aborting due to previous error
+
+For more information about this error, try `rustc --explain E0597`.