7726ccad28
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
8 lines
217 B
Text
8 lines
217 B
Text
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.
|