Add some GHC.Generics imports so we can find Inl etc where we need to
[ghc-prim.git] / GHC / Types.hs
1
2 {-# OPTIONS_GHC -XNoImplicitPrelude #-}
3
4 module GHC.Types where
5
6 import GHC.Prim
7 -- We need Inl etc behind the scenes for the type definitions
8 import GHC.Generics ()
9
10 infixr 5 :
11
12 data [] a = [] | a : [a]
13
14 data Char = C# Char#
15