mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
12 lines
322 B
Plaintext
12 lines
322 B
Plaintext
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 previous error
|
|
|