2017-12-02 13:15:03 -06:00
|
|
|
error: missing `for` in a trait impl
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/impl-parsing.rs:6:11
|
2017-12-02 13:15:03 -06:00
|
|
|
|
|
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
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/impl-parsing.rs:7:11
|
2017-12-02 13:15:03 -06:00
|
|
|
|
|
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
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/impl-parsing.rs:8:6
|
2017-12-02 13:15:03 -06:00
|
|
|
|
|
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
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/impl-parsing.rs:9:6
|
2017-12-02 13:15:03 -06:00
|
|
|
|
|
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`
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/impl-parsing.rs:11:16
|
2017-12-02 13:15:03 -06:00
|
|
|
|
|
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
|
|
|
|
|