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

15 lines
369 B
Text

constant f : (nat → nat → Prop) → Prop
example (h1 : false) : ∀ (a b c : nat), a = 0 → b = 0 → f (λ x y, a + x = b + c + y) :=
begin
intros x x y h h, -- Force name clash
trace_state,
contradiction
end
example (h1 : false) : ∀ (a b c : nat), a = 0 → b = 0 → f (λ x y, a + x = b + c + y) :=
begin
intros,
trace_state,
contradiction
end