]> git.lizzy.rs Git - rust.git/blob - src/test/ui/regions/regions-assoc-type-static-bound-in-trait-not-met.stderr
Rollup merge of #67055 - lqd:const_qualif, r=oli-obk
[rust.git] / src / test / ui / regions / regions-assoc-type-static-bound-in-trait-not-met.stderr
1 error[E0495]: cannot infer an appropriate lifetime for lifetime parameter `'a` due to conflicting requirements
2   --> $DIR/regions-assoc-type-static-bound-in-trait-not-met.rs:9:10
3    |
4 LL | impl<'a> Foo for &'a i32 {
5    |          ^^^
6    |
7 note: first, the lifetime cannot outlive the lifetime `'a` as defined on the impl at 9:6...
8   --> $DIR/regions-assoc-type-static-bound-in-trait-not-met.rs:9:6
9    |
10 LL | impl<'a> Foo for &'a i32 {
11    |      ^^
12 note: ...so that the types are compatible
13   --> $DIR/regions-assoc-type-static-bound-in-trait-not-met.rs:9:10
14    |
15 LL | impl<'a> Foo for &'a i32 {
16    |          ^^^
17    = note: expected  `Foo`
18               found  `Foo`
19    = note: but, the lifetime must be valid for the static lifetime...
20 note: ...so that the type `&i32` will meet its required lifetime bounds
21   --> $DIR/regions-assoc-type-static-bound-in-trait-not-met.rs:9:10
22    |
23 LL | impl<'a> Foo for &'a i32 {
24    |          ^^^
25
26 error: aborting due to previous error
27
28 For more information about this error, try `rustc --explain E0495`.