summaryrefslogtreecommitdiff
path: root/testsuite/tests/ghci/scripts/T9140.script
Commit message (Collapse)AuthorAgeFilesLines
* Implement the Strict language extensionAdam Sandberg Eriksson2015-11-141-3/+3
| | | | | | | | | | | | | | | | | | | | | Add a new language extension `-XStrict` which turns all bindings strict as if the programmer had written a `!` before it. This also upgrades ordinary Haskell to allow recursive and polymorphic strict bindings. See the wiki[1] and the Note [Desugar Strict binds] in DsBinds for specification and implementation details. [1] https://ghc.haskell.org/trac/ghc/wiki/StrictPragma Reviewers: austin, tibbe, simonpj, bgamari Reviewed By: tibbe, bgamari Subscribers: thomie Differential Revision: https://phabricator.haskell.org/D1142 GHC Trac Issues: #8347
* Correct checkStrictBinds for generalised typearchblob2014-08-191-0/+5
See Trac #9140. Auditors: simonpj Signed-off-by: Austin Seipp <austin@well-typed.com>