Update source-repository in the .cabal file to point to the git repo
[ghc-prim.git] / GHC / Ordering.hs
1
2 {-# OPTIONS_GHC -XNoImplicitPrelude #-}
3
4 module GHC.Ordering where
5
6 -- We need Inl etc behind the scenes for the Ordering definition
7 import GHC.Generics ()
8
9 default ()
10
11 data Ordering = LT | EQ | GT
12