2020-02-23 05:54:00 -06:00
|
|
|
error: `default` is not followed by an item
|
2020-02-22 01:16:39 -06:00
|
|
|
--> $DIR/default-unmatched-assoc.rs:5: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`
|
2020-02-22 01:16:39 -06:00
|
|
|
|
|
|
|
error: non-item in item list
|
|
|
|
--> $DIR/default-unmatched-assoc.rs:5:13
|
|
|
|
|
|
|
|
|
LL | trait Foo {
|
|
|
|
| - item list starts here
|
|
|
|
LL | default!();
|
|
|
|
LL | default do
|
|
|
|
| ^^ non-item starts here
|
|
|
|
...
|
|
|
|
LL | }
|
|
|
|
| - item list ends here
|
|
|
|
|
2020-02-23 05:54:00 -06:00
|
|
|
error: `default` is not followed by an item
|
2020-02-22 01:16:39 -06:00
|
|
|
--> $DIR/default-unmatched-assoc.rs:13: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`
|
2020-02-22 01:16:39 -06:00
|
|
|
|
|
|
|
error: non-item in item list
|
|
|
|
--> $DIR/default-unmatched-assoc.rs:13:13
|
|
|
|
|
|
|
|
|
LL | impl S {
|
|
|
|
| - item list starts here
|
|
|
|
LL | default!();
|
|
|
|
LL | default do
|
|
|
|
| ^^ non-item starts here
|
|
|
|
...
|
|
|
|
LL | }
|
|
|
|
| - item list ends here
|
|
|
|
|
|
|
|
error: cannot find macro `default` in this scope
|
2020-11-21 09:02:37 -06:00
|
|
|
--> $DIR/default-unmatched-assoc.rs:4:5
|
2020-02-22 01:16:39 -06:00
|
|
|
|
|
|
|
|
LL | default!();
|
|
|
|
| ^^^^^^^
|
|
|
|
|
|
|
|
error: cannot find macro `default` in this scope
|
2020-11-21 09:02:37 -06:00
|
|
|
--> $DIR/default-unmatched-assoc.rs:12:5
|
2020-02-22 01:16:39 -06:00
|
|
|
|
|
|
|
|
LL | default!();
|
|
|
|
| ^^^^^^^
|
|
|
|
|
|
|
|
error: aborting due to 6 previous errors
|
|
|
|
|