summaryrefslogtreecommitdiffstats
path: root/src/test/ui/lifetimes/issue-90600-expected-return-static-indirect.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/lifetimes/issue-90600-expected-return-static-indirect.stderr')
-rw-r--r--src/test/ui/lifetimes/issue-90600-expected-return-static-indirect.stderr24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/test/ui/lifetimes/issue-90600-expected-return-static-indirect.stderr b/src/test/ui/lifetimes/issue-90600-expected-return-static-indirect.stderr
new file mode 100644
index 000000000..99e1e7217
--- /dev/null
+++ b/src/test/ui/lifetimes/issue-90600-expected-return-static-indirect.stderr
@@ -0,0 +1,24 @@
+error[E0597]: `foo` does not live long enough
+ --> $DIR/issue-90600-expected-return-static-indirect.rs:7:32
+ |
+LL | let refcell = RefCell::new(&mut foo);
+ | ^^^^^^^^ borrowed value does not live long enough
+LL |
+LL | let read = &refcell as &RefCell<dyn Read>;
+ | -------- cast requires that `foo` is borrowed for `'static`
+...
+LL | }
+ | - `foo` dropped here while still borrowed
+
+error: lifetime may not live long enough
+ --> $DIR/issue-90600-expected-return-static-indirect.rs:9:16
+ |
+LL | fn inner(mut foo: &[u8]) {
+ | - let's call the lifetime of this reference `'1`
+...
+LL | let read = &refcell as &RefCell<dyn Read>;
+ | ^^^^^^^^ cast requires that `'1` must outlive `'static`
+
+error: aborting due to 2 previous errors
+
+For more information about this error, try `rustc --explain E0597`.