rust/tests/ui/traits/object/supertrait-lifetime-bound.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
324 B
Plaintext
Raw Normal View History

2022-02-01 03:11:23 +00:00
error: lifetime may not live long enough
2022-04-01 17:13:25 +00:00
--> $DIR/supertrait-lifetime-bound.rs:10:5
2022-02-01 03:11:23 +00:00
|
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
2022-02-01 03:11:23 +00:00