b2b76b078f
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
8 lines
No EOL
162 B
Text
8 lines
No EOL
162 B
Text
import standard
|
|
|
|
definition id {A : Type} (a : A) := a
|
|
|
|
theorem tst {A B : Bool} (H1 : A) (H2 : B) : id A
|
|
:= by !(unfold_tac @id; state_tac); exact_tac
|
|
|
|
check tst |