summaryrefslogtreecommitdiffstats
path: root/tests/ui/nll/issue-52663-trait-object.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/nll/issue-52663-trait-object.stderr')
-rw-r--r--tests/ui/nll/issue-52663-trait-object.stderr13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/ui/nll/issue-52663-trait-object.stderr b/tests/ui/nll/issue-52663-trait-object.stderr
new file mode 100644
index 000000000..5cedea6e6
--- /dev/null
+++ b/tests/ui/nll/issue-52663-trait-object.stderr
@@ -0,0 +1,13 @@
+error[E0597]: `tmp0` does not live long enough
+ --> $DIR/issue-52663-trait-object.rs:12:20
+ |
+LL | let tmp1 = &tmp0;
+ | ^^^^^ borrowed value does not live long enough
+LL | Box::new(tmp1) as Box<dyn Foo + '_>
+ | ----------------------------------- borrow later captured here by trait object
+LL | };
+ | - `tmp0` dropped here while still borrowed
+
+error: aborting due to previous error
+
+For more information about this error, try `rustc --explain E0597`.