diff options
author | RyanGlScott <ryan.gl.scott@gmail.com> | 2015-09-21 21:50:55 -0500 |
---|---|---|
committer | Austin Seipp <austin@well-typed.com> | 2015-09-21 21:50:56 -0500 |
commit | 089b72f524a6a7564346baca9595fcd07081ec40 (patch) | |
tree | 2354366bd18fe44ddbcbe4953e172f345a374b66 /testsuite/tests/driver/T4437.hs | |
parent | d4d34a73aacc225a8f28d7138137bf548c9e51cc (diff) | |
download | haskell-089b72f524a6a7564346baca9595fcd07081ec40.tar.gz |
DeriveLift extension (#1830)
Summary:
This implements -XDeriveLift, which allows for automatic derivation
of the Lift class from template-haskell. The implementation is based
off of Ian Lynagh's th-lift library
(http://hackage.haskell.org/package/th-lift).
Test Plan: ./validate
Reviewers: hvr, simonpj, bgamari, goldfire, austin
Reviewed By: goldfire, austin
Subscribers: osa1, thomie
Differential Revision: https://phabricator.haskell.org/D1168
GHC Trac Issues: #1830
Diffstat (limited to 'testsuite/tests/driver/T4437.hs')
-rw-r--r-- | testsuite/tests/driver/T4437.hs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/testsuite/tests/driver/T4437.hs b/testsuite/tests/driver/T4437.hs index c197cbd5dc..9d5202e357 100644 --- a/testsuite/tests/driver/T4437.hs +++ b/testsuite/tests/driver/T4437.hs @@ -35,7 +35,8 @@ expectedGhcOnlyExtensions = ["RelaxedLayout", "AlternativeLayoutRuleTransitional", "StaticPointers", "StrictData", - "ApplicativeDo"] -- TODO add this to Cabal + "ApplicativeDo", + "DeriveLift"] -- TODO add this to Cabal expectedCabalOnlyExtensions :: [String] expectedCabalOnlyExtensions = ["Generics", |