From 5db79a49ea6175e1e51738af045dcaabd26861ca Mon Sep 17 00:00:00 2001 From: Guillaume Melquiond Date: Fri, 20 Nov 2020 20:35:06 +0100 Subject: Add a testcase. --- test-suite/misc/11170.sh | 8 ++++++++ test-suite/misc/aux11170.v | 7 +++++++ 2 files changed, 15 insertions(+) create mode 100755 test-suite/misc/11170.sh create mode 100644 test-suite/misc/aux11170.v (limited to 'test-suite/misc') diff --git a/test-suite/misc/11170.sh b/test-suite/misc/11170.sh new file mode 100755 index 0000000000..da8843fcf6 --- /dev/null +++ b/test-suite/misc/11170.sh @@ -0,0 +1,8 @@ +#!/usr/bin/env bash + +set -e + +export PATH=$BIN:$PATH +export OCAMLRUNPARAM=s=1 + +${coqc#"$BIN"} misc/aux11170.v diff --git a/test-suite/misc/aux11170.v b/test-suite/misc/aux11170.v new file mode 100644 index 0000000000..bf93462463 --- /dev/null +++ b/test-suite/misc/aux11170.v @@ -0,0 +1,7 @@ +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. +Axiom f : T n. +Eval vm_compute in let t := (app n f, 0) in snd t. -- cgit v1.2.3 From 8e152ab7156c6c642bb4665d4610cc8c49242141 Mon Sep 17 00:00:00 2001 From: Guillaume Melquiond Date: Sat, 21 Nov 2020 11:44:49 +0100 Subject: Remove dependency on BinNat. --- test-suite/misc/aux11170.v | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'test-suite/misc') 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. -- cgit v1.2.3