aboutsummaryrefslogtreecommitdiff
path: root/test-suite
diff options
context:
space:
mode:
authorPierre-Marie Pédrot2016-08-28 19:43:00 +0200
committerPierre-Marie Pédrot2016-08-28 19:43:46 +0200
commit2b4517cf85432d68e53ac46815309fd8068a40ad (patch)
treeee8ceaefc9cbb5ee5362fd4c00a68ceeff09e752 /test-suite
parent26ed8658149d14efa6e4d077c573481281cb610e (diff)
Fix bug #4764: Syntactic notation externalization breaks.
Diffstat (limited to 'test-suite')
-rw-r--r--test-suite/bugs/closed/4764.v5
1 files changed, 5 insertions, 0 deletions
diff --git a/test-suite/bugs/closed/4764.v b/test-suite/bugs/closed/4764.v
new file mode 100644
index 0000000000..e545cc1b71
--- /dev/null
+++ b/test-suite/bugs/closed/4764.v
@@ -0,0 +1,5 @@
+Notation prop_fun x y := (fun (x : Prop) => y).
+Definition foo := fun (p : Prop) => p.
+Definition bar := fun (_ : Prop) => O.
+Print foo.
+Print bar.