summaryrefslogtreecommitdiffstats
path: root/src/test/ui/nll/issue-69114-static-ty.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/nll/issue-69114-static-ty.stderr')
-rw-r--r--src/test/ui/nll/issue-69114-static-ty.stderr15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/test/ui/nll/issue-69114-static-ty.stderr b/src/test/ui/nll/issue-69114-static-ty.stderr
new file mode 100644
index 000000000..0815e74b5
--- /dev/null
+++ b/src/test/ui/nll/issue-69114-static-ty.stderr
@@ -0,0 +1,15 @@
+error[E0597]: `n` does not live long enough
+ --> $DIR/issue-69114-static-ty.rs:7:9
+ |
+LL | FOO(&n);
+ | ----^^-
+ | | |
+ | | borrowed value does not live long enough
+ | argument requires that `n` is borrowed for `'static`
+LL |
+LL | }
+ | - `n` dropped here while still borrowed
+
+error: aborting due to previous error
+
+For more information about this error, try `rustc --explain E0597`.