chore: fix test

This commit is contained in:
Leonardo de Moura 2020-11-11 07:18:49 -08:00
parent f936fe306c
commit 7daeb7fffd

View file

@ -147,15 +147,6 @@ theorem natAddZero (n : Nat) : n + 0 = n :=
theorem optParamEq (α : Sort u) (default : α) : optParam α default = α :=
rfl
/--Like `by applyInstance`, but not dependent on the tactic framework. -/
@[reducible]
def inferInstance {α : Type u} [i : α] : α :=
i
@[reducible]
def inferInstanceAs (α : Type u) [i : α] : α :=
i
@[extern c inline "#1 || #2"]
def strictOr (b₁ b₂ : Bool) :=
b₁ || b₂