blob: dd305e834426e91e05b01b0349a756bddedfc4da (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
{-# LANGUAGE Haskell2010 #-}
{-# LANGUAGE TypeFamilies #-}
unit p where
signature A where
type family F a where
F a = Bool
unit q where
dependency p[A=<A>]
signature A where
type family F a where
F a = Int
|