diff options
author | Ben Gamari <bgamari.foss@gmail.com> | 2016-01-25 17:14:49 +0100 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2016-01-25 17:14:50 +0100 |
commit | f0f63b39783055b2c0c1a8db8c22749afa6d7329 (patch) | |
tree | 7e857b70f06115f8b19ff009eab09ed19e8aab0f /testsuite/tests/driver/T11429c.hs | |
parent | 128b678061120270d3d4fe3eccd1b7dc76a8de35 (diff) | |
download | haskell-f0f63b39783055b2c0c1a8db8c22749afa6d7329.tar.gz |
Implement -Wunrecognised-warning-flag
This allows the user to avoid warnings for warning flags that GHC
doesn't recognise. See #11429 for details..
Test Plan: Validate with T11429[abc] tests
Reviewers: austin, hvr
Reviewed By: hvr
Subscribers: thomie
Differential Revision: https://phabricator.haskell.org/D1830
GHC Trac Issues: #11429
Diffstat (limited to 'testsuite/tests/driver/T11429c.hs')
-rw-r--r-- | testsuite/tests/driver/T11429c.hs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/testsuite/tests/driver/T11429c.hs b/testsuite/tests/driver/T11429c.hs new file mode 100644 index 0000000000..c81fb82437 --- /dev/null +++ b/testsuite/tests/driver/T11429c.hs @@ -0,0 +1,2 @@ +main :: IO () +main = putStrLn "hello world" |