From 37a58edffeff7b6a7f03ec781e1e2ca73de4b3af Mon Sep 17 00:00:00 2001 From: Matthieu Sozeau Date: Thu, 14 Aug 2014 13:01:30 +0200 Subject: Restrict eta-conversion to inductive records, fixing bug #3310. --- test-suite/bugs/opened/3310.v | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100644 test-suite/bugs/opened/3310.v (limited to 'test-suite/bugs/opened') diff --git a/test-suite/bugs/opened/3310.v b/test-suite/bugs/opened/3310.v deleted file mode 100644 index ee9f8edfd3..0000000000 --- a/test-suite/bugs/opened/3310.v +++ /dev/null @@ -1,10 +0,0 @@ -Set Primitive Projections. - -CoInductive stream A := cons { hd : A; tl : stream A }. - -CoFixpoint id {A} (s : stream A) := cons _ (hd s) (id (tl s)). - -Lemma id_spec : forall A (s : stream A), id s = s. -Proof. -intros A s. -Fail Timeout 1 change (id s) with (cons _ (hd (id s)) (tl (id s))). -- cgit v1.2.3