summaryrefslogtreecommitdiffstats
path: root/tests/ui/regions/do-not-suggest-adding-bound-to-opaque-type.stderr
blob: d76a83b02580904019ca09f8650f12311d251ed9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
error[E0597]: `x` does not live long enough
  --> $DIR/do-not-suggest-adding-bound-to-opaque-type.rs:9:7
   |
LL |     let x = ();
   |         - binding `x` declared here
LL |     S(&x)
   |     --^^-
   |     | |
   |     | borrowed value does not live long enough
   |     opaque type requires that `x` is borrowed for `'static`
LL | }
   | - `x` dropped here while still borrowed

error: aborting due to previous error

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