7 lines
137 B
Text
7 lines
137 B
Text
|
import logic
|
||
|
|
||
|
definition id {A : Type} (a : A) := a
|
||
|
|
||
|
theorem tst {A B : Bool} (H1 : A) (H2 : B) : id A
|
||
|
:= by [!(unfold id, show), exact]
|