blob: a8e7f596d2d7b4d9d5476acb067b94c521e252ed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
{-# LANGUAGE DefaultSignatures #-}
unit p where
signature A where
class C a where
f :: a -> a
default f :: a -> a
signature B where
unit i where
module A where
class C a where
f :: a -> a
unit r where
dependency p[A=i:A,B=<B>]
|