lean2/tests/lean/eq2.lean

9 lines
217 B
Text
Raw Normal View History

import Int.
variable List : Type -> Type
variable nil {A : Type} : List A
variable cons {A : Type} (head : A) (tail : List A) : List A
variable l : List Int.
check l = nil.
setoption pp::implicit true
check l = nil.