summaryrefslogtreecommitdiff
path: root/test-suite/modules/grammar.v
diff options
context:
space:
mode:
Diffstat (limited to 'test-suite/modules/grammar.v')
-rw-r--r--test-suite/modules/grammar.v15
1 files changed, 15 insertions, 0 deletions
diff --git a/test-suite/modules/grammar.v b/test-suite/modules/grammar.v
new file mode 100644
index 00000000..fb734b5d
--- /dev/null
+++ b/test-suite/modules/grammar.v
@@ -0,0 +1,15 @@
+Module N.
+Definition f:=plus.
+Syntax constr level 7: plus [ (f $n $m)] -> [ $n:L "+" $m:E].
+Check (f O O).
+End N.
+Check (N.f O O).
+Import N.
+Check (N.f O O).
+Check (f O O).
+Module M:=N.
+Check (f O O).
+Check (N.f O O).
+Import M.
+Check (f O O).
+Check (N.f O O).