blob: 403b50456bd1698e1d1259ee2a2816385c7aab0c (
plain)
1
2
3
4
5
6
7
8
|
type Foo :: forall k. k -> k
type family Foo a where
forall k (a :: k). Foo a = a
-- Defined at T15341.hs:5:1
type Foo :: forall k. k -> k
type family Foo @k a where
forall k (a :: k). Foo @k a = a
-- Defined at T15341.hs:5:1
|