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

23 lines
387 B
Text

example (h : false) : 10000000 = 20000000 :=
begin
try {simp},
contradiction
end
example (h : false) (x : nat) : x + 10000000 = x + 20000000 :=
begin
try {simp},
contradiction
end
example (h : false) (x y : nat) : x + y + 10000000 = x + y + 20000000 :=
begin
try {simp},
contradiction
end
example (h : false) : "hello" = "world" :=
begin
try {simp},
contradiction
end