rust/tests/ui/parser/impl-parsing.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

43 lines
1 KiB
Plaintext
Raw Normal View History

error: missing `for` in a trait impl
2020-01-08 18:25:42 +00:00
--> $DIR/impl-parsing.rs:4:11
|
2019-03-09 12:03:44 +00:00
LL | impl Trait Type {}
| ^ help: add `for` here
error: missing `for` in a trait impl
2020-01-08 18:25:42 +00:00
--> $DIR/impl-parsing.rs:5:11
|
2019-03-09 12:03:44 +00:00
LL | impl Trait .. {}
| ^ help: add `for` here
error: expected a trait, found type
2020-01-08 18:25:42 +00:00
--> $DIR/impl-parsing.rs:6:6
|
2019-03-09 12:03:44 +00:00
LL | impl ?Sized for Type {}
| ^^^^^^
error: expected a trait, found type
2020-01-08 18:25:42 +00:00
--> $DIR/impl-parsing.rs:7:6
|
2019-03-09 12:03:44 +00:00
LL | impl ?Sized for .. {}
| ^^^^^^
2020-02-23 11:54:00 +00:00
error: `default` is not followed by an item
--> $DIR/impl-parsing.rs:9:1
|
2019-03-09 12:03:44 +00:00
LL | default unsafe FAIL
2020-02-23 03:49:26 +00:00
| ^^^^^^^ the `default` qualifier
|
= note: only `fn`, `const`, `type`, or `impl` items may be prefixed by `default`
error: expected item, found keyword `unsafe`
--> $DIR/impl-parsing.rs:9:9
|
LL | default unsafe FAIL
| ^^^^^^ expected item
|
= note: for a full list of items that can appear in modules, see <https://doc.rust-lang.org/reference/items.html>
error: aborting due to 6 previous errors