2014-07-02 03:43:53 +00:00
|
|
|
import standard
|
2014-06-29 19:24:13 +00:00
|
|
|
|
|
|
|
definition id {A : Type} (a : A) := a
|
|
|
|
|
|
|
|
theorem tst {A B : Bool} (H1 : A) (H2 : B) : id A
|
2014-07-02 03:43:53 +00:00
|
|
|
:= by unfold_tac id; exact_tac
|
2014-06-29 19:24:13 +00:00
|
|
|
|
2014-07-02 03:43:53 +00:00
|
|
|
check tst
|