See comment at #1594 This commit is not fixing the issue, but a problem described in one of the comments.
9 lines
243 B
Text
9 lines
243 B
Text
variables (A : Type) (f : A → ℕ → A) [has_mul A]
|
||
open nat
|
||
|
||
theorem thm' (a : A) : ∀ m n, f a m * f a n = f a n * f a m
|
||
| 0 n := sorry
|
||
| m 0 := sorry
|
||
| (succ m) (succ n) :=
|
||
have h : f a m * f a n = f a n * f a m, from thm' _ _,
|
||
sorry
|