aboutsummaryrefslogtreecommitdiff
path: root/test-suite/misc/aux11170.v
diff options
context:
space:
mode:
Diffstat (limited to 'test-suite/misc/aux11170.v')
-rw-r--r--test-suite/misc/aux11170.v6
1 files changed, 6 insertions, 0 deletions
diff --git a/test-suite/misc/aux11170.v b/test-suite/misc/aux11170.v
new file mode 100644
index 0000000000..d4a8630053
--- /dev/null
+++ b/test-suite/misc/aux11170.v
@@ -0,0 +1,6 @@
+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 := (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.