lean2/tests/lean/bad8.lean

11 lines
318 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 a :
variable b :
variable n :
variable m :
definition l1 : list := cons a (cons b (cons n nil))
definition l2 : list := cons a (cons n (cons b nil))