We should not use XGenerics in ghc-prim, for now at least.
[ghc-prim.git] / GHC / Ordering.hs
1
2 {-# OPTIONS_GHC -XNoImplicitPrelude #-}
3 {-# OPTIONS_GHC -XNoGenerics        #-}
4
5 module GHC.Ordering where
6
7 -- We need Inl etc behind the scenes for the Ordering definition
8 import GHC.Generics ()
9
10 default ()
11
12 data Ordering = LT | EQ | GT
13