From ddb36d24b3f26727ab3cb58ee8a5f68fbdb0a927 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pierre-Marie=20P=C3=A9drot?= <pierre-marie.pedrot@inria.fr> Date: Thu, 19 Sep 2019 09:12:47 +0200 Subject: [PATCH] Fix w.r.t. coq/coq#10764. --- theories/streams.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/theories/streams.v b/theories/streams.v index 2880a9a9..92304f40 100644 --- a/theories/streams.v +++ b/theories/streams.v @@ -41,7 +41,7 @@ Proof. by constructor. Qed. Global Instance equal_equivalence : Equivalence (≡@{stream A}). Proof. split. - - now cofix FIX; intros [??]; constructor. + - now cofix FIX; intros ?; constructor. - now cofix FIX; intros ?? [??]; constructor. - cofix FIX; intros ??? [??] [??]; constructor; etrans; eauto. Qed. -- GitLab