2018-02-07 19:35:35 -08:00
|
|
|
error[E0657]: `impl Trait` can only capture lifetimes bound at the fn or impl level
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/E0657.rs:10:31
|
2018-02-07 19:35:35 -08:00
|
|
|
|
|
2018-02-25 02:59:34 +03:00
|
|
|
LL | -> Box<for<'a> Id<impl Lt<'a>>>
|
|
|
|
| ^^
|
2018-02-07 19:35:35 -08:00
|
|
|
|
|
|
|
error[E0657]: `impl Trait` can only capture lifetimes bound at the fn or impl level
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/E0657.rs:19:35
|
2018-02-07 19:35:35 -08:00
|
|
|
|
|
2018-02-25 02:59:34 +03:00
|
|
|
LL | -> Box<for<'a> Id<impl Lt<'a>>>
|
|
|
|
| ^^
|
2018-02-07 19:35:35 -08:00
|
|
|
|
2018-06-26 13:28:02 +02:00
|
|
|
error: aborting due to 2 previous errors
|
2018-02-07 19:35:35 -08:00
|
|
|
|
2020-03-30 23:16:44 +05:30
|
|
|
For more information about this error, try `rustc --explain E0657`.
|