summaryrefslogtreecommitdiff
path: root/test-suite/bugs/closed/4616.v
diff options
context:
space:
mode:
Diffstat (limited to 'test-suite/bugs/closed/4616.v')
-rw-r--r--test-suite/bugs/closed/4616.v5
1 files changed, 4 insertions, 1 deletions
diff --git a/test-suite/bugs/closed/4616.v b/test-suite/bugs/closed/4616.v
index c862f820..d6660e35 100644
--- a/test-suite/bugs/closed/4616.v
+++ b/test-suite/bugs/closed/4616.v
@@ -1,4 +1,7 @@
+Require Coq.extraction.Extraction.
+
Set Primitive Projections.
Record Foo' := Foo { foo : Type }.
-Axiom f : forall t : Foo', foo t.
+Definition f := forall t : Foo', foo t.
Extraction f.
+Extraction TestCompile f.