rust/tests/ui/parser/default-unmatched.stderr

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

19 lines
547 B
Plaintext
Raw Normal View History

2020-02-23 05:54:00 -06:00
error: `default` is not followed by an item
--> $DIR/default-unmatched.rs:3:5
|
LL | default do
2020-02-22 21:49:26 -06:00
| ^^^^^^^ the `default` qualifier
|
= note: only `fn`, `const`, `type`, or `impl` items may be prefixed by `default`
error: expected item, found reserved keyword `do`
--> $DIR/default-unmatched.rs:3:13
|
LL | default do
| ^^ 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 2 previous errors