rust/src/test/ui/error-codes/E0657.stderr

16 lines
520 B
Plaintext
Raw Normal View History

2018-02-08 03:35:35 +00:00
error[E0657]: `impl Trait` can only capture lifetimes bound at the fn or impl level
--> $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
--> $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"