summaryrefslogtreecommitdiff
path: root/libraries/template-haskell
diff options
context:
space:
mode:
authorErik de Castro Lopo <erik.decastrolopo@ambiata.com>2017-01-08 08:34:30 +1100
committerErik de Castro Lopo <erikd@mega-nerd.com>2017-01-08 08:34:30 +1100
commit7b317effd59f56bc8450ea8efbb1ef5954f09e5d (patch)
treeea338905bc014b14ae7fd7cd8d0510122839677a /libraries/template-haskell
parentc1ed9557ad4e40caa72b27693527e02887ddd896 (diff)
downloadhaskell-7b317effd59f56bc8450ea8efbb1ef5954f09e5d.tar.gz
TH: Add Trustworthy language pragma
Test Plan: validate Reviewers: goldfire, bgamari, austin, RyanGlScott Reviewed By: RyanGlScott Subscribers: RyanGlScott, simonpj, thomie, goldfire Differential Revision: https://phabricator.haskell.org/D2546 GHC Trac Issues: #12511
Diffstat (limited to 'libraries/template-haskell')
-rw-r--r--libraries/template-haskell/Language/Haskell/TH/Syntax.hs3
1 files changed, 2 insertions, 1 deletions
diff --git a/libraries/template-haskell/Language/Haskell/TH/Syntax.hs b/libraries/template-haskell/Language/Haskell/TH/Syntax.hs
index 9de531ab9e..92e48adb2a 100644
--- a/libraries/template-haskell/Language/Haskell/TH/Syntax.hs
+++ b/libraries/template-haskell/Language/Haskell/TH/Syntax.hs
@@ -1,6 +1,7 @@
{-# LANGUAGE CPP, DeriveDataTypeable,
DeriveGeneric, FlexibleInstances, DefaultSignatures,
- RankNTypes, RoleAnnotations, ScopedTypeVariables #-}
+ RankNTypes, RoleAnnotations, ScopedTypeVariables,
+ Trustworthy #-}
{-# OPTIONS_GHC -fno-warn-inline-rule-shadowing #-}