packages feed

idris-0.12: test/regression001/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