fix(library/standard): make sure file can be compiled when processing theorems in parallel

Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
Leonardo de Moura 2014-07-12 23:55:50 +01:00
parent 585127ef66
commit 0bd943574e

View file

@ -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 :=