0f27856e4a
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
6 lines
170 B
Text
6 lines
170 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; exact; apply and_intro; !exact
|
|
|