summaryrefslogtreecommitdiffstats
path: root/src/test/ui/regions/regions-assoc-type-static-bound-in-trait-not-met.stderr
blob: a96f5612fa23d207879dd9d85dac1ae474cc631e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
error[E0477]: the type `&'a i32` does not fulfill the required lifetime
  --> $DIR/regions-assoc-type-static-bound-in-trait-not-met.rs:10:18
   |
LL |     type Value = &'a i32;
   |                  ^^^^^^^
   |
note: type must satisfy the static lifetime as required by this binding
  --> $DIR/regions-assoc-type-static-bound-in-trait-not-met.rs:5:17
   |
LL |     type Value: 'static;
   |                 ^^^^^^^

error: aborting due to previous error

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