Update source-repository in the .cabal file to point to the git repo
[ghc-prim.git] / GHC / Unit.hs
1
2 {-# OPTIONS_GHC -XNoImplicitPrelude #-}
3
4 module GHC.Unit where
5
6 import GHC.Generics ()
7
8 default ()
9
10 {-
11 The Unit type is here because GHC.PrimopWrappers needs to use it in a
12 type signature.
13 -}
14
15 -- | The unit datatype @()@ has one non-undefined member, the nullary
16 -- constructor @()@.
17 data () = ()
18