aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuillaume Melquiond2020-11-21 11:44:49 +0100
committerGuillaume Melquiond2020-11-21 11:44:49 +0100
commit8e152ab7156c6c642bb4665d4610cc8c49242141 (patch)
treef9cf8785da85f6230e313b21d429c027ea3720ed
parent5db79a49ea6175e1e51738af045dcaabd26861ca (diff)
Remove dependency on BinNat.
-rw-r--r--test-suite/misc/aux11170.v3
1 files changed, 1 insertions, 2 deletions
diff --git a/test-suite/misc/aux11170.v b/test-suite/misc/aux11170.v
index bf93462463..d4a8630053 100644
--- a/test-suite/misc/aux11170.v
+++ b/test-suite/misc/aux11170.v
@@ -1,7 +1,6 @@
-Require Import BinNat.
Fixpoint T n := match n with O => nat | S n => nat -> T n end.
Fixpoint app n : T n -> nat :=
match n with O => fun x => x | S n => fun f => app n (f 0) end.
-Definition n := N.to_nat 5000.
+Definition n := (fix aux n := match n with S n => aux n + aux n | O => 1 end) 13.
Axiom f : T n.
Eval vm_compute in let t := (app n f, 0) in snd t.