mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
51 lines
1.1 KiB
Plaintext
51 lines
1.1 KiB
Plaintext
|
error: unmatched `default`
|
||
|
--> $DIR/default-unmatched-assoc.rs:5:5
|
||
|
|
|
||
|
LL | default do
|
||
|
| ^^^^^^^ the unmatched `default`
|
||
|
|
||
|
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
|
||
|
|
||
|
error: unmatched `default`
|
||
|
--> $DIR/default-unmatched-assoc.rs:13:5
|
||
|
|
|
||
|
LL | default do
|
||
|
| ^^^^^^^ the unmatched `default`
|
||
|
|
||
|
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
|
||
|
--> $DIR/default-unmatched-assoc.rs:12:5
|
||
|
|
|
||
|
LL | default!();
|
||
|
| ^^^^^^^
|
||
|
|
||
|
error: cannot find macro `default` in this scope
|
||
|
--> $DIR/default-unmatched-assoc.rs:4:5
|
||
|
|
|
||
|
LL | default!();
|
||
|
| ^^^^^^^
|
||
|
|
||
|
error: aborting due to 6 previous errors
|
||
|
|