2024-03-07 09:44:07 -06:00
|
|
|
error[E0657]: `impl Trait` cannot capture higher-ranked lifetime from `dyn` type
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/E0657.rs:10:31
|
2018-02-07 21:35:35 -06:00
|
|
|
|
|
2018-02-24 17:59:34 -06:00
|
|
|
LL | -> Box<for<'a> Id<impl Lt<'a>>>
|
|
|
|
| ^^
|
2024-03-07 09:44:07 -06:00
|
|
|
|
|
|
|
|
note: lifetime declared here
|
|
|
|
--> $DIR/E0657.rs:10:16
|
|
|
|
|
|
|
|
|
LL | -> Box<for<'a> Id<impl Lt<'a>>>
|
|
|
|
| ^^
|
2018-02-07 21:35:35 -06:00
|
|
|
|
2024-03-07 09:44:07 -06:00
|
|
|
error[E0657]: `impl Trait` cannot capture higher-ranked lifetime from `dyn` type
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/E0657.rs:19:35
|
2018-02-07 21:35:35 -06:00
|
|
|
|
|
2018-02-24 17:59:34 -06:00
|
|
|
LL | -> Box<for<'a> Id<impl Lt<'a>>>
|
|
|
|
| ^^
|
2024-03-07 09:44:07 -06:00
|
|
|
|
|
|
|
|
note: lifetime declared here
|
|
|
|
--> $DIR/E0657.rs:19:20
|
|
|
|
|
|
|
|
|
LL | -> Box<for<'a> Id<impl Lt<'a>>>
|
|
|
|
| ^^
|
2018-02-07 21:35:35 -06:00
|
|
|
|
2018-06-26 06:28:02 -05:00
|
|
|
error: aborting due to 2 previous errors
|
2018-02-07 21:35:35 -06:00
|
|
|
|
2020-03-30 12:46:44 -05:00
|
|
|
For more information about this error, try `rustc --explain E0657`.
|