]> git.lizzy.rs Git - rust.git/blob - src/test/ui/hrtb/hrtb-just-for-static.stderr
Auto merge of #98120 - TaKO8Ki:box-diagnostic-metadata-field, r=estebank
[rust.git] / src / test / ui / hrtb / hrtb-just-for-static.stderr
1 error: implementation of `Foo` is not general enough
2   --> $DIR/hrtb-just-for-static.rs:24:5
3    |
4 LL |     want_hrtb::<StaticInt>()
5    |     ^^^^^^^^^^^^^^^^^^^^^^ implementation of `Foo` is not general enough
6    |
7    = note: `StaticInt` must implement `Foo<&'0 isize>`, for any lifetime `'0`...
8    = note: ...but it actually implements `Foo<&'static isize>`
9
10 error: lifetime may not live long enough
11   --> $DIR/hrtb-just-for-static.rs:30:5
12    |
13 LL | fn give_some<'a>() {
14    |              -- lifetime `'a` defined here
15 LL |     want_hrtb::<&'a u32>()
16    |     ^^^^^^^^^^^^^^^^^^^^ requires that `'a` must outlive `'static`
17
18 error: implementation of `Foo` is not general enough
19   --> $DIR/hrtb-just-for-static.rs:30:5
20    |
21 LL |     want_hrtb::<&'a u32>()
22    |     ^^^^^^^^^^^^^^^^^^^^ implementation of `Foo` is not general enough
23    |
24    = note: `Foo<&'0 isize>` would have to be implemented for the type `&u32`, for any lifetime `'0`...
25    = note: ...but `Foo<&'1 isize>` is actually implemented for the type `&'1 u32`, for some specific lifetime `'1`
26
27 error: aborting due to 3 previous errors
28