26 lines
572 B
Text
26 lines
572 B
Text
error: unmatched `default`
|
|
--> $DIR/default-unmatched-extern.rs:5:5
|
|
|
|
|
LL | default do
|
|
| ^^^^^^^ the unmatched `default`
|
|
|
|
error: non-item in item list
|
|
--> $DIR/default-unmatched-extern.rs:5:13
|
|
|
|
|
LL | extern "C" {
|
|
| - 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-extern.rs:4:5
|
|
|
|
|
LL | default!();
|
|
| ^^^^^^^
|
|
|
|
error: aborting due to 3 previous errors
|
|
|