2018-02-08 03:35:35 +00:00
|
|
|
error[E0657]: `impl Trait` can only capture lifetimes bound at the fn or impl level
|
2018-02-14 18:22:12 +00:00
|
|
|
--> $DIR/E0657.rs:20:31
|
2018-02-08 03:35:35 +00:00
|
|
|
|
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | -> impl for<'a> Id<impl Lt<'a>>
|
|
|
|
| ^^
|
2018-02-08 03:35:35 +00:00
|
|
|
|
|
|
|
error[E0657]: `impl Trait` can only capture lifetimes bound at the fn or impl level
|
2018-02-14 18:22:12 +00:00
|
|
|
--> $DIR/E0657.rs:29:35
|
2018-02-08 03:35:35 +00:00
|
|
|
|
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | -> impl for<'a> Id<impl Lt<'a>>
|
|
|
|
| ^^
|
2018-02-08 03:35:35 +00:00
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
2018-02-19 20:40:25 +00:00
|
|
|
If you want more information on this error, try using "rustc --explain E0657"
|