From d9417f9a66ffc0ce3b09b3b069ad309bf3ecdd0a Mon Sep 17 00:00:00 2001
From: Robbert Krebbers <mail@robbertkrebbers.nl>
Date: Wed, 25 Oct 2017 08:36:50 +0200
Subject: [PATCH] Missing `IntoForall` instance for later.

---
 theories/proofmode/class_instances.v | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/theories/proofmode/class_instances.v b/theories/proofmode/class_instances.v
index d31192a56..beb33f1e1 100644
--- a/theories/proofmode/class_instances.v
+++ b/theories/proofmode/class_instances.v
@@ -720,6 +720,9 @@ Proof. done. Qed.
 Global Instance into_forall_always {A} P (Φ : A → uPred M) :
   IntoForall P Φ → IntoForall (□ P) (λ a, □ (Φ a))%I.
 Proof. rewrite /IntoForall=> HP. by rewrite HP always_forall. Qed.
+Global Instance into_forall_later {A} P (Φ : A → uPred M) :
+  IntoForall P Φ → IntoForall (▷ P) (λ a, ▷ (Φ a))%I.
+Proof. rewrite /IntoForall=> HP. by rewrite HP later_forall. Qed.
 
 (* FromForall *)
 Global Instance from_forall_forall {A} (Φ : A → uPred M) :
-- 
GitLab