summaryrefslogtreecommitdiffstats
path: root/src/test/ui/parser/default-unmatched.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/parser/default-unmatched.rs')
-rw-r--r--src/test/ui/parser/default-unmatched.rs6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/test/ui/parser/default-unmatched.rs b/src/test/ui/parser/default-unmatched.rs
new file mode 100644
index 000000000..49346e5c6
--- /dev/null
+++ b/src/test/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`
+}