aboutsummaryrefslogtreecommitdiff
path: root/test-suite/bugs/closed/bug_5233.v
diff options
context:
space:
mode:
Diffstat (limited to 'test-suite/bugs/closed/bug_5233.v')
-rw-r--r--test-suite/bugs/closed/bug_5233.v3
1 files changed, 3 insertions, 0 deletions
diff --git a/test-suite/bugs/closed/bug_5233.v b/test-suite/bugs/closed/bug_5233.v
index 06286c740d..63e33b63f7 100644
--- a/test-suite/bugs/closed/bug_5233.v
+++ b/test-suite/bugs/closed/bug_5233.v
@@ -1,2 +1,5 @@
(* Implicit arguments on type were missing for recursive records *)
Inductive foo {A : Type} : Type := { Foo : foo }.
+
+(* Implicit arguments can be overidden *)
+Inductive bar {A : Type} : Type := { Bar : @bar (A*A) }.