aboutsummaryrefslogtreecommitdiffhomepage
path: root/test-suite/output/Notations.v
diff options
context:
space:
mode:
authorGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2012-07-21 21:12:06 +0000
committerGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2012-07-21 21:12:06 +0000
commit391bebce928ac1a43582cd4e9ba06fb1b1657887 (patch)
tree56eef3e0a97d4996e48926fc2cbb6bd279693d86 /test-suite/output/Notations.v
parent35087ab8adb906c37f185e14b183a93b2f6b22aa (diff)
Fixing bug #2835 (the rationale for printing notations was not
standard under lambdas and products). git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@15644 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'test-suite/output/Notations.v')
-rw-r--r--test-suite/output/Notations.v9
1 files changed, 9 insertions, 0 deletions
diff --git a/test-suite/output/Notations.v b/test-suite/output/Notations.v
index d5763022e..75d5037a8 100644
--- a/test-suite/output/Notations.v
+++ b/test-suite/output/Notations.v
@@ -257,3 +257,12 @@ Check (fun x => match x with | nil => NONE | h :' t => SOME3 _ t end).
Notation s := Type.
Check s.
+
+(* Test bug #2835: notations were not uniformly managed under prod and lambda *)
+
+Open Scope nat_scope.
+
+Notation "'foo' n" := (S n) (at level 50): nat_scope.
+
+Check (foo 9).
+Check (fun _ : nat => 9).