about summary refs log tree commit diff
path: root/tests/ui/traits/object/supertrait-lifetime-bound.stderr
blob: 4fd7d2f0ec726e087c9e6b43b7cb448aae3a9fbe (plain)
1
2
3
4
5
6
7
8
9
10
11
error: lifetime may not live long enough
  --> $DIR/supertrait-lifetime-bound.rs:10:5
   |
LL | fn test2<'a>() {
   |          -- lifetime `'a` defined here
...
LL |     test1::<dyn Bar<&'a u32>, _>();
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ requires that `'a` must outlive `'static`

error: aborting due to 1 previous error