packages feed

idris-0.9.16: test/reg057/reg057.idr

module Foo

data CrappySet : (a : Type) -> Ord a -> Type where
    Empty : (inst : Ord a) => CrappySet a inst
    Item  : (inst : Ord a) => a -> CrappySet a inst -> CrappySet a inst

empty : (inst : Ord a) => CrappySet a inst