summaryrefslogtreecommitdiffstats
path: root/tests/ui/traits/object/issue-44454-3.stderr
blob: 294684d26bdfc8defe8e4a565d6fe414eb2e58d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
error: lifetime may not live long enough
  --> $DIR/issue-44454-3.rs:17:15
   |
LL | fn make_static<'a, T>(t: &'a T) -> &'static T {
   |                -- lifetime `'a` defined here
LL |     let x: <dyn Animal<&'a T> as Projector>::Foo = t;
LL |     let any = generic::<dyn Animal<&'a T>, &'a T>(x);
   |               ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ requires that `'a` must outlive `'static`

error: aborting due to previous error