packages feed

purescript-0.15.15: tests/purs/passing/2958.purs

module Main where

import Effect.Console

data Nil
data Snoc xs x

infixl 1 type Snoc as :>

type One = Nil :> Int
type Two = Nil :> Int :> Int
type Three = Nil :> Int :> Int :> Int

main = log "Done"