diff options
| author | Pierre-Marie Pédrot | 2016-08-28 19:43:00 +0200 |
|---|---|---|
| committer | Pierre-Marie Pédrot | 2016-08-28 19:43:46 +0200 |
| commit | 2b4517cf85432d68e53ac46815309fd8068a40ad (patch) | |
| tree | ee8ceaefc9cbb5ee5362fd4c00a68ceeff09e752 /test-suite | |
| parent | 26ed8658149d14efa6e4d077c573481281cb610e (diff) | |
Fix bug #4764: Syntactic notation externalization breaks.
Diffstat (limited to 'test-suite')
| -rw-r--r-- | test-suite/bugs/closed/4764.v | 5 |
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. |
