instance
where
The following could not be elaborated. ```lean instance : MulComm Bool where mulComm := fun {a b} => match a, b with | true, true => rfl | true, false => rfl | false, true => rfl | false, false => rfl ```