blob: 45efda7759c955de5b3484c85269ffa8b766100f (
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
|
{-# 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)))))))))
|