aboutsummaryrefslogtreecommitdiffhomepage
path: root/test-suite/bugs/closed/4616.v
diff options
context:
space:
mode:
authorGravatar Pierre Letouzey <pierre.letouzey@inria.fr>2017-07-27 14:20:11 +0200
committerGravatar Pierre Letouzey <pierre.letouzey@inria.fr>2017-07-27 15:08:36 +0200
commit036acae205ff0477dbae3a97b44853dc27d03b93 (patch)
tree938a980befb0ec2c30d43473ae511cad01819459 /test-suite/bugs/closed/4616.v
parent87130496c04dc393e32837f1ce95e463938b2202 (diff)
test-suite: more use of the new command Extraction TestCompile
Diffstat (limited to 'test-suite/bugs/closed/4616.v')
-rw-r--r--test-suite/bugs/closed/4616.v3
1 files changed, 2 insertions, 1 deletions
diff --git a/test-suite/bugs/closed/4616.v b/test-suite/bugs/closed/4616.v
index a59975dbc..d6660e355 100644
--- a/test-suite/bugs/closed/4616.v
+++ b/test-suite/bugs/closed/4616.v
@@ -2,5 +2,6 @@ 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.