2017-12-02 13:15:03 -06:00
|
|
|
error: missing `for` in a trait impl
|
|
|
|
--> $DIR/impl-parsing.rs:16:11
|
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | impl Trait Type {} //~ ERROR missing `for` in a trait impl
|
2017-12-02 13:15:03 -06:00
|
|
|
| ^
|
|
|
|
|
|
|
|
error: missing `for` in a trait impl
|
|
|
|
--> $DIR/impl-parsing.rs:17:11
|
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | impl Trait .. {} //~ ERROR missing `for` in a trait impl
|
2017-12-02 13:15:03 -06:00
|
|
|
| ^
|
|
|
|
|
|
|
|
error: expected a trait, found type
|
|
|
|
--> $DIR/impl-parsing.rs:18:6
|
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | impl ?Sized for Type {} //~ ERROR expected a trait, found type
|
2017-12-02 13:15:03 -06:00
|
|
|
| ^^^^^^
|
|
|
|
|
|
|
|
error: expected a trait, found type
|
|
|
|
--> $DIR/impl-parsing.rs:19:6
|
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | impl ?Sized for .. {} //~ ERROR expected a trait, found type
|
2017-12-02 13:15:03 -06:00
|
|
|
| ^^^^^^
|
|
|
|
|
|
|
|
error: expected `impl`, found `FAIL`
|
|
|
|
--> $DIR/impl-parsing.rs:21:16
|
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | default unsafe FAIL //~ ERROR expected `impl`, found `FAIL`
|
2017-12-02 13:15:03 -06:00
|
|
|
| ^^^^ expected `impl` here
|
|
|
|
|
|
|
|
error: aborting due to 5 previous errors
|
|
|
|
|