rust/src/test/ui/parser/impl-parsing.stderr

33 lines
853 B
Plaintext
Raw Normal View History

error: missing `for` in a trait impl
2018-12-25 09:56:47 -06:00
--> $DIR/impl-parsing.rs:6:11
|
2018-02-22 18:42:32 -06:00
LL | impl Trait Type {} //~ ERROR missing `for` in a trait impl
| ^
error: missing `for` in a trait impl
2018-12-25 09:56:47 -06:00
--> $DIR/impl-parsing.rs:7:11
|
2018-02-22 18:42:32 -06:00
LL | impl Trait .. {} //~ ERROR missing `for` in a trait impl
| ^
error: expected a trait, found type
2018-12-25 09:56:47 -06:00
--> $DIR/impl-parsing.rs:8:6
|
2018-02-22 18:42:32 -06:00
LL | impl ?Sized for Type {} //~ ERROR expected a trait, found type
| ^^^^^^
error: expected a trait, found type
2018-12-25 09:56:47 -06:00
--> $DIR/impl-parsing.rs:9:6
|
2018-02-22 18:42:32 -06:00
LL | impl ?Sized for .. {} //~ ERROR expected a trait, found type
| ^^^^^^
error: expected `impl`, found `FAIL`
2018-12-25 09:56:47 -06:00
--> $DIR/impl-parsing.rs:11:16
|
2018-02-22 18:42:32 -06:00
LL | default unsafe FAIL //~ ERROR expected `impl`, found `FAIL`
| ^^^^ expected `impl` here
error: aborting due to 5 previous errors