2014-07-02 17:35:43 +00:00
|
|
|
import standard
|
2014-07-02 03:43:53 +00:00
|
|
|
using tactic
|
2014-06-29 18:39:05 +00:00
|
|
|
|
2014-07-22 16:43:18 +00:00
|
|
|
theorem tst {A B : Prop} (H1 : A) (H2 : B) : A
|
2014-07-04 17:10:05 +00:00
|
|
|
:= by [trace "first"; state; now |
|
|
|
|
trace "second"; state; fail |
|
|
|
|
trace "third"; assumption]
|
2014-07-02 03:43:53 +00:00
|
|
|
|
|
|
|
check tst
|