blob: dede8ba2f82675ee06889935b9830c238434a903 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
{-# LANGUAGE RankNTypes #-}
{-# LANGUAGE DataKinds #-}
{-# LANGUAGE PolyKinds #-}
{-# LANGUAGE MagicHash #-}
module T14561 where
import GHC.Types
import Unsafe.Coerce
badId :: forall r (a :: TYPE r). a -> a
badId = unsafeCoerce#
-- Un-saturated application of a representation-polymorphic
-- function that must be eta-expanded
goodId :: forall (a :: Type). a -> a
goodId = unsafeCoerce#
-- But this one is OK
|