packages feed

module-management-0.20.2: testdata/split2-expected/URL.hs

{-# LANGUAGE TypeFamilies #-}

module URL (ToURL(toURL, nullURL, errorURL), URLT) where

class ToURL a where
    type URLT a
    toURL :: a -> URLT a
    nullURL :: a
    errorURL :: a -> URLT a