From 0bd943574ea9961a70546642ec603e3a8768ffea Mon Sep 17 00:00:00 2001 From: Leonardo de Moura Date: Sat, 12 Jul 2014 23:55:50 +0100 Subject: [PATCH] fix(library/standard): make sure file can be compiled when processing theorems in parallel Signed-off-by: Leonardo de Moura --- library/standard/logic.lean | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/standard/logic.lean b/library/standard/logic.lean index e03cc781c..5f6620689 100644 --- a/library/standard/logic.lean +++ b/library/standard/logic.lean @@ -6,7 +6,7 @@ definition Bool [inline] := Type.{0} inductive false : Bool := -- No constructors -theorem false_elim (c : Bool) (H : false) +theorem false_elim (c : Bool) (H : false) : c := false_rec c H inductive true : Bool :=