summaryrefslogtreecommitdiff
path: root/testsuite/tests/ghci/scripts/T15827.hs
blob: ba67534e62fb4bb7eb5b400cf337d759f0fdbdb7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{-# LANGUAGE PolyKinds #-}
{-# LANGUAGE ScopedTypeVariables #-}
{-# LANGUAGE TypeFamilies #-}
module T15827 where

import Data.Kind
import Data.Proxy

type family F1 (a :: k)
type instance forall k (a :: k). F1 a = Proxy a

type family F2 (a :: k) :: Type where
  forall k (a :: k). F2 a = Proxy a

data family D (a :: k)
data instance forall k (a :: k). D a = MkD (Proxy a)