diff options
author | Alan Zimmerman <alan.zimm@gmail.com> | 2021-05-16 21:22:39 +0100 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2021-05-21 15:06:20 -0400 |
commit | 5ab174e4fa12740aecdcfe06ffb4ca16724a4bae (patch) | |
tree | f4ea8a871d380e12833bef4e98d59b9da0f02f8b /compiler/Language/Haskell/Syntax | |
parent | 0da85d41ee6bc7f941cdbee8cebd5b57fa35396f (diff) | |
download | haskell-5ab174e4fa12740aecdcfe06ffb4ca16724a4bae.tar.gz |
Remove Maybe from Context in HsQualTy
Updates haddock submodule
Closes #19845
Diffstat (limited to 'compiler/Language/Haskell/Syntax')
-rw-r--r-- | compiler/Language/Haskell/Syntax/Type.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/Language/Haskell/Syntax/Type.hs b/compiler/Language/Haskell/Syntax/Type.hs index 0829e9a637..1b945c9c1e 100644 --- a/compiler/Language/Haskell/Syntax/Type.hs +++ b/compiler/Language/Haskell/Syntax/Type.hs @@ -733,7 +733,7 @@ data HsType pass | HsQualTy -- See Note [HsType binders] { hst_xqual :: XQualTy pass - , hst_ctxt :: Maybe (LHsContext pass) -- Context C => blah + , hst_ctxt :: LHsContext pass -- Context C => blah , hst_body :: LHsType pass } | HsTyVar (XTyVar pass) |