2024-02-27 16:02:19 +00:00
|
|
|
error[E0310]: the associated type `<T as Original>::{synthetic#0}` may not live long enough
|
2024-02-22 06:15:55 +00:00
|
|
|
--> $DIR/missing-static-bound-from-impl.rs:11:9
|
|
|
|
|
|
|
|
|
LL | Box::new(<T as Original>::f())
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
| |
|
2024-02-27 16:02:19 +00:00
|
|
|
| the associated type `<T as Original>::{synthetic#0}` must be valid for the static lifetime...
|
2024-02-22 06:15:55 +00:00
|
|
|
| ...so that the type `impl Fn()` will meet its required lifetime bounds
|
|
|
|
|
|
|
|
error: aborting due to 1 previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0310`.
|