diff options
author | Ben Gamari <ben@smart-cactus.org> | 2020-01-03 21:51:11 -0500 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2020-02-08 10:17:55 -0500 |
commit | aede171a59f9b7b8022548c385a1cb8c4589f905 (patch) | |
tree | 70c3a4e1518592f9392893ea3ad64a25bae0f467 /testsuite/tests/rename/should_compile/T1972.hs | |
parent | c2e301aeeae353a64be43e5fa9e7d464797d5648 (diff) | |
download | haskell-aede171a59f9b7b8022548c385a1cb8c4589f905.tar.gz |
testsuite: Fix -Wcompat-unqualified-imports issues
Diffstat (limited to 'testsuite/tests/rename/should_compile/T1972.hs')
-rw-r--r-- | testsuite/tests/rename/should_compile/T1972.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuite/tests/rename/should_compile/T1972.hs b/testsuite/tests/rename/should_compile/T1972.hs index d4da5f41aa..7b6d7387c7 100644 --- a/testsuite/tests/rename/should_compile/T1972.hs +++ b/testsuite/tests/rename/should_compile/T1972.hs @@ -4,7 +4,7 @@ module Temp where -import Data.List +import Data.List (mapAccumL) data Data = Data {name :: String} @@ -17,4 +17,4 @@ mapAccumL y = y test x = a+b where - (a,b,c) = x
\ No newline at end of file + (a,b,c) = x |