e379034b95
- It uses the unifier in "conservative" mode - It only affects the current goal closes #570
5 lines
139 B
Text
5 lines
139 B
Text
import logic
|
|
open tactic
|
|
|
|
theorem tst {A B : Prop} (H1 : A) (H2 : B) : ((fun x : Prop, x) A) ∧ B ∧ A
|
|
:= by repeat (split | assumption)
|