summaryrefslogtreecommitdiffstats
path: root/src/test/ui/variance/variance-associated-types2.stderr
blob: 35871c1236fae11cdfec983f1dcbb779aa26b47f (plain)
1
2
3
4
5
6
7
8
9
10
error: lifetime may not live long enough
  --> $DIR/variance-associated-types2.rs:13:12
   |
LL | fn take<'a>(_: &'a u32) {
   |         -- lifetime `'a` defined here
LL |     let _: Box<dyn Foo<Bar = &'a u32>> = make();
   |            ^^^^^^^^^^^^^^^^^^^^^^^^^^^ type annotation requires that `'a` must outlive `'static`

error: aborting due to previous error