lean4-htt/tests/lean/mulcommErrorMessage.lean

17 lines
442 B
Text
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

class MulComm (α : Type u) [Mul α] : Prop where
mulComm : {a b : α} → a * b = b * a
instance : Mul Bool where
mul := and
instance : MulComm Bool where
mulComm := fun a b =>
match a, b with
| true, true => rfl
| true, false => rfl
| false, true => rfl
| false, false => rfl
instance : MulComm Bool :=
⟨λ a b => Bool.casesOn a (Bool.casesOn b _ _)
(Bool.casesOn b _ _)⟩