summaryrefslogtreecommitdiffstats
path: root/tests/ui/traits/coercion-generic-regions.stderr
blob: 5cfb64901233ea79e780e6613e3da060cdeb0581 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
error[E0597]: `person` does not live long enough
  --> $DIR/coercion-generic-regions.rs:17:24
   |
LL |     let person: &str = &person;
   |                        ^^^^^^^
   |                        |
   |                        borrowed value does not live long enough
   |                        assignment requires that `person` is borrowed for `'static`
LL |     let s: Box<dyn Trait<&'static str>> = Box::new(Struct { person: person });
LL | }
   | - `person` dropped here while still borrowed

error: aborting due to previous error

For more information about this error, try `rustc --explain E0597`.