Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Glasgow Haskell Compiler
GHC
Commits
177134e9
Commit
177134e9
authored
Jun 07, 2012
by
Simon Peyton Jones
Browse files
Wibbles to the last merge, to fix the build
parent
13602a46
Changes
2
Hide whitespace changes
Inline
Side-by-side
compiler/typecheck/TcHsType.lhs
View file @
177134e9
...
...
@@ -19,13 +19,13 @@ module TcHsType (
-- Type checking type and class decls
kcTyClTyVars, tcTyClTyVars,
tcHsArgType,
tcHsConArgType, tcDataKindSig,
tcHsConArgType, tcDataKindSig,
tcClassSigType,
-- Kind-checking types
-- No kind generalisation, no checkValidType
kcHsTyVarBndrs, tcHsTyVarBndrs,
tcHsLiftedType,
tcHsLiftedType,
tcHsOpenType,
tcLHsType, tcCheckLHsType,
tcHsContext, tcInferApps, tcHsArgTys,
...
...
compiler/typecheck/TcTyClsDecls.lhs
View file @
177134e9
...
...
@@ -433,7 +433,7 @@ kcConDecl (ConDecl { con_name = name, con_qvars = ex_tvs
= addErrCtxt (dataConCtxt name) $
kcHsTyVarBndrs False ex_tvs $ \ _ ->
do { _ <- tcHsContext ex_ctxt
; mapM_ (tcHs
Arg
Type . getBangType) (hsConDeclArgTys details)
; mapM_ (tcHs
Open
Type . getBangType) (hsConDeclArgTys details)
; _ <- tcConRes res
; return () }
\end{code}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment