364bba2129
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
5 lines
175 B
Text
5 lines
175 B
Text
import logic
|
|
open tactic
|
|
|
|
theorem tst {A B : Prop} (H1 : A) (H2 : B) : ((fun x : Prop, x) A) ∧ B ∧ A
|
|
:= by apply and.intro; beta; assumption; apply and.intro; !assumption
|