diff options
Diffstat (limited to 'libraries/base/tests/T11334a.hs')
-rw-r--r-- | libraries/base/tests/T11334a.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libraries/base/tests/T11334a.hs b/libraries/base/tests/T11334a.hs index 2b4ac56c70..0cf91eaa2a 100644 --- a/libraries/base/tests/T11334a.hs +++ b/libraries/base/tests/T11334a.hs @@ -7,5 +7,5 @@ import GHC.Types main :: IO () main = do print (typeOf (Proxy :: Proxy 'Just)) - print (typeOf (Proxy :: Proxy (TYPE 'PtrRepLifted))) - print (typeOf (Proxy :: Proxy (TYPE 'PtrRepUnlifted))) + print (typeOf (Proxy :: Proxy (TYPE 'LiftedRep))) + print (typeOf (Proxy :: Proxy (TYPE 'UnliftedRep))) |