lean4-htt/old_tests/tests/lean/run/mrw.lean
2018-04-10 12:56:55 -07:00

6 lines
134 B
Text

example (n : nat) : ∃ x, x + n = n + 1 :=
begin
constructor,
fail_if_success {rw [zero_add] {unify := ff}},
rw [add_comm]
end