diff options
author | Vladislav Zavialov <vlad.z.4096@gmail.com> | 2021-02-10 13:38:23 +0300 |
---|---|---|
committer | Vladislav Zavialov <vlad.z.4096@gmail.com> | 2021-03-19 20:57:05 +0300 |
commit | 32711799397ae76a87ba47b1ba6daa42f94fc965 (patch) | |
tree | a3836f41120d846aa70034c16195f3134cb17120 /compiler/GHC/Parser/Errors.hs | |
parent | 302854154626ef10363afdda3ff1db7160e0827f (diff) | |
download | haskell-wip/gadt-custom-syntax.tar.gz |
Custom GADT syntaxwip/gadt-custom-syntax
Diffstat (limited to 'compiler/GHC/Parser/Errors.hs')
-rw-r--r-- | compiler/GHC/Parser/Errors.hs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/compiler/GHC/Parser/Errors.hs b/compiler/GHC/Parser/Errors.hs index 83812f7673..3052020417 100644 --- a/compiler/GHC/Parser/Errors.hs +++ b/compiler/GHC/Parser/Errors.hs @@ -385,6 +385,8 @@ data PsErrorDesc -- -- TODO: distinguish errors without using SDoc + | PsErrIllegalGadtConSig -- TODO (int-index): add a description of the problem + newtype StarIsType = StarIsType Bool |