]> git.lizzy.rs Git - rust.git/blob - src/test/ui/regions/do-not-suggest-adding-bound-to-opaque-type.stderr
Rollup merge of #106043 - c410-f3r:moar-errors, r=petrochenkov
[rust.git] / src / test / ui / regions / do-not-suggest-adding-bound-to-opaque-type.stderr
1 error[E0597]: `x` does not live long enough
2   --> $DIR/do-not-suggest-adding-bound-to-opaque-type.rs:9:7
3    |
4 LL |     S(&x)
5    |     --^^-
6    |     | |
7    |     | borrowed value does not live long enough
8    |     opaque type requires that `x` is borrowed for `'static`
9 LL | }
10    | - `x` dropped here while still borrowed
11
12 error: aborting due to previous error
13
14 For more information about this error, try `rustc --explain E0597`.