aboutsummaryrefslogtreecommitdiffhomepage
path: root/test-suite/bugs
diff options
context:
space:
mode:
authorGravatar Pierre-Marie Pédrot <pierre-marie.pedrot@inria.fr>2016-08-28 19:43:00 +0200
committerGravatar Pierre-Marie Pédrot <pierre-marie.pedrot@inria.fr>2016-08-28 19:43:46 +0200
commit2b4517cf85432d68e53ac46815309fd8068a40ad (patch)
treeee8ceaefc9cbb5ee5362fd4c00a68ceeff09e752 /test-suite/bugs
parent26ed8658149d14efa6e4d077c573481281cb610e (diff)
Fix bug #4764: Syntactic notation externalization breaks.
Diffstat (limited to 'test-suite/bugs')
-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 000000000..e545cc1b7
--- /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.