lean2/tests/lean/rewrite_loop.lean

8 lines
141 B
Text
Raw Normal View History

import data.nat
open algebra
theorem test {A : Type} [s : comm_ring A] (a b c : A) : a + b + c = a + c + b :=
begin
rewrite ?add.comm
end