37b5b7c4c2
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
6 lines
180 B
Text
6 lines
180 B
Text
import standard
|
|
using tactic
|
|
|
|
theorem tst {A B : Bool} (H1 : A) (H2 : B) : ((fun x : Bool, x) A) ∧ B ∧ A
|
|
:= by apply and_intro; beta; assumption; apply and_intro; !assumption
|
|
|