summaryrefslogtreecommitdiff
path: root/tests/recBad.ur
blob: 11934ec0fcf71c088739620cea7f3d75748644ce (plain)
1
2
3
4
5
6
7
8
9
datatype list a = Nil | Cons of a * list a

fun append (t ::: Type) (ls1 : list t) (ls2 : list t) : list t =
        case ls1 of
            Nil => ls2
          | Cons (h, t) => Cons (h, append t ls2)

(*val rec ones : list int = Cons (1, ones)*)
val rec ones = fn () => Cons (1, ones ())