summaryrefslogtreecommitdiff
path: root/tests/ui/nll/issue-30438-a.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/nll/issue-30438-a.stderr')
-rw-r--r--tests/ui/nll/issue-30438-a.stderr12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/ui/nll/issue-30438-a.stderr b/tests/ui/nll/issue-30438-a.stderr
new file mode 100644
index 00000000000..53845af82fb
--- /dev/null
+++ b/tests/ui/nll/issue-30438-a.stderr
@@ -0,0 +1,12 @@
+error[E0515]: cannot return reference to temporary value
+ --> $DIR/issue-30438-a.rs:12:16
+ |
+LL | return &Test { s: &self.s};
+ | ^------------------
+ | ||
+ | |temporary value created here
+ | returns a reference to data owned by the current function
+
+error: aborting due to previous error
+
+For more information about this error, try `rustc --explain E0515`.