diff options
Diffstat (limited to 'tests/ui/parser/default-unmatched.rs')
-rw-r--r-- | tests/ui/parser/default-unmatched.rs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/ui/parser/default-unmatched.rs b/tests/ui/parser/default-unmatched.rs new file mode 100644 index 000000000..49346e5c6 --- /dev/null +++ b/tests/ui/parser/default-unmatched.rs @@ -0,0 +1,6 @@ +mod foo { + default!(); // OK. + default do + //~^ ERROR `default` is not followed by an item + //~| ERROR expected item, found reserved keyword `do` +} |