blob: ba1a145a5f67b812f2c9f92a259cce864df85ea8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
-- Hoogle documentation, generated by Haddock
-- See Hoogle, http://www.haskell.org/hoogle/
@package test
@version 0.0.0
module AssocTypes
class Foo a where {
type family Bar a b;
type family Baz a;
type Baz a = [(a, a)];
}
bar :: Foo a => Bar a a
instance AssocTypes.Foo [a]
|