7 lines
135 B
Text
7 lines
135 B
Text
example (p q : Prop) (h₀ : q) : ∀ (h : p ∧ true), q :=
|
|
begin
|
|
simp, intros,
|
|
trace_state,
|
|
guard_hyp h := p,
|
|
exact h₀
|
|
end
|