Unification of Nat and Naturals
This commit removes the separate kind 'Nat' and enables promotion of type 'Natural' for using as type literal. It partially solves #10776 Now the following code will be successfully typechecked: data C = MkC Natural type CC = MkC 1 Before this change we had to create the separate type for promotion data C = MkC Natural data CP = MkCP Nat type CC = MkCP 1 But CP is uninhabited in terms. For backward compatibility type synonym `Nat` has been made: type Nat = Natural The user's documentation and tests have been updated. The haddock submodule also have been updated.
Showing
- compiler/GHC/Builtin/Names.hs 1 addition, 2 deletionscompiler/GHC/Builtin/Names.hs
- compiler/GHC/Builtin/Types.hs 4 additions, 9 deletionscompiler/GHC/Builtin/Types.hs
- compiler/GHC/Builtin/Types.hs-boot 1 addition, 1 deletioncompiler/GHC/Builtin/Types.hs-boot
- compiler/GHC/Builtin/Types/Literals.hs 6 additions, 8 deletionscompiler/GHC/Builtin/Types/Literals.hs
- compiler/GHC/Core/Type.hs 2 additions, 2 deletionscompiler/GHC/Core/Type.hs
- compiler/GHC/HsToCore/Binds.hs 2 additions, 2 deletionscompiler/GHC/HsToCore/Binds.hs
- compiler/GHC/Tc/Gen/HsType.hs 2 additions, 2 deletionscompiler/GHC/Tc/Gen/HsType.hs
- compiler/GHC/Tc/Instance/Class.hs 1 addition, 1 deletioncompiler/GHC/Tc/Instance/Class.hs
- docs/users_guide/9.2.1-notes.rst 16 additions, 0 deletionsdocs/users_guide/9.2.1-notes.rst
- docs/users_guide/exts/type_literals.rst 8 additions, 2 deletionsdocs/users_guide/exts/type_literals.rst
- libraries/base/Data/Typeable/Internal.hs 1 addition, 1 deletionlibraries/base/Data/Typeable/Internal.hs
- libraries/base/GHC/Event/PSQ.hs 1 addition, 1 deletionlibraries/base/GHC/Event/PSQ.hs
- libraries/base/GHC/Generics.hs 1 addition, 1 deletionlibraries/base/GHC/Generics.hs
- libraries/base/GHC/TypeLits.hs 3 additions, 3 deletionslibraries/base/GHC/TypeLits.hs
- libraries/base/GHC/TypeNats.hs 11 additions, 4 deletionslibraries/base/GHC/TypeNats.hs
- libraries/base/changelog.md 9 additions, 1 deletionlibraries/base/changelog.md
- libraries/ghc-prim/GHC/Types.hs 2 additions, 5 deletionslibraries/ghc-prim/GHC/Types.hs
- testsuite/tests/ghci/scripts/T9181.stdout 28 additions, 22 deletionstestsuite/tests/ghci/scripts/T9181.stdout
- testsuite/tests/indexed-types/should_compile/T13398b.hs 1 addition, 0 deletionstestsuite/tests/indexed-types/should_compile/T13398b.hs
- testsuite/tests/indexed-types/should_compile/T15322a.stderr 1 addition, 1 deletiontestsuite/tests/indexed-types/should_compile/T15322a.stderr
Loading
Please register or sign in to comment