blob: 6deb98c1e9306dfcb39738431273407a64c221e3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
{-# LANGUAGE Haskell2010 #-}
{-# LANGUAGE KindSignatures #-}
{-# LANGUAGE TypeFamilies #-}
{-# LANGUAGE UndecidableInstances #-}
module Bug806 where
import Data.Proxy
-- | 'F1' docs
type family F1 a b :: * -> *
-- | 'F2' docs
type family F2 a b :: * -> * where
F2 Int b = Maybe
F2 a b = []
-- | 'D' docs
data family D a :: * -> *
v :: Int
v = 42
-- | 'C' docs
class C a where
-- | 'AT' docs
type AT a
type AT a = Proxy (Proxy (Proxy (Proxy (Proxy (Proxy (Proxy (Proxy (Proxy (Proxy)))))))))
|