aboutsummaryrefslogtreecommitdiff
path: root/test-suite/bugs
diff options
context:
space:
mode:
authorMaxime Dénès2017-11-20 10:21:46 +0100
committerMaxime Dénès2017-11-20 10:21:46 +0100
commit9d3a07d9a7ddf3a0e33b6b1f60d3c89037dc55b7 (patch)
treef3851eb1d58e7944f715e3d6aacf4ea07b70e911 /test-suite/bugs
parent6ef1e22f17b7a4d16fbc519240b4df1e3915ffef (diff)
parent685643098eeef00fe1f8dfca0927db2e812e1e7a (diff)
Merge PR #6125: Fixing remaining problems with bug #5762 and PR #1120 (clause "where" with implicit arguments)
Diffstat (limited to 'test-suite/bugs')
-rw-r--r--test-suite/bugs/closed/5762.v6
1 files changed, 6 insertions, 0 deletions
diff --git a/test-suite/bugs/closed/5762.v b/test-suite/bugs/closed/5762.v
index edd5c8d73d..55d36bd722 100644
--- a/test-suite/bugs/closed/5762.v
+++ b/test-suite/bugs/closed/5762.v
@@ -26,3 +26,9 @@ Reserved Notation "%% a" (at level 70).
Record R :=
{g : forall {A} (a:A), a=a where "%% x" := (g x);
k : %% 0 = eq_refl}.
+
+(* An extra example *)
+
+Module A.
+Inductive I {A:Type} := C : # 0 -> I where "# I" := (I = I) : I_scope.
+End A.