aboutsummaryrefslogtreecommitdiffhomepage
path: root/test-suite/success/cbn.v
diff options
context:
space:
mode:
authorGravatar Matthieu Sozeau <mattam@mattam.org>2017-04-13 20:41:40 +0200
committerGravatar Matthieu Sozeau <mattam@mattam.org>2017-04-13 20:47:06 +0200
commit58e804f07172acc6bb01c8bdafde1217eb4ec4b8 (patch)
treecf6057cb340cf71867f04b19b0f7733596949b1c /test-suite/success/cbn.v
parent582fab072375924ce380148c8a92dbc2b4ec30cc (diff)
Reinstate fixpoint refolding in [cbn], deactivated by mistake.
Add a test-suite file to be sure we won't regress silently.
Diffstat (limited to 'test-suite/success/cbn.v')
-rw-r--r--test-suite/success/cbn.v18
1 files changed, 18 insertions, 0 deletions
diff --git a/test-suite/success/cbn.v b/test-suite/success/cbn.v
new file mode 100644
index 000000000..6aeb05f54
--- /dev/null
+++ b/test-suite/success/cbn.v
@@ -0,0 +1,18 @@
+(* cbn is able to refold mutual recursive calls *)
+
+Fixpoint foo (n : nat) :=
+ match n with
+ | 0 => true
+ | S n => g n
+ end
+with g (n : nat) : bool :=
+ match n with
+ | 0 => true
+ | S n => foo n
+ end.
+Goal forall n, foo (S n) = g n.
+ intros. cbn.
+ match goal with
+ |- g _ = g _ => reflexivity
+ end.
+Qed. \ No newline at end of file