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/overloadedlists | |
parent | c2e301aeeae353a64be43e5fa9e7d464797d5648 (diff) | |
download | haskell-aede171a59f9b7b8022548c385a1cb8c4589f905.tar.gz |
testsuite: Fix -Wcompat-unqualified-imports issues
Diffstat (limited to 'testsuite/tests/overloadedlists')
-rw-r--r-- | testsuite/tests/overloadedlists/should_run/overloadedlistsrun05.hs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/testsuite/tests/overloadedlists/should_run/overloadedlistsrun05.hs b/testsuite/tests/overloadedlists/should_run/overloadedlistsrun05.hs index 18d8cc1d01..3abdd5da87 100644 --- a/testsuite/tests/overloadedlists/should_run/overloadedlistsrun05.hs +++ b/testsuite/tests/overloadedlists/should_run/overloadedlistsrun05.hs @@ -1,16 +1,16 @@ +{-# OPTIONS_GHC -Wno-compat-unqualified-imports #-} {-# LANGUAGE OverloadedLists, TypeFamilies, RebindableSyntax #-} import Prelude import Data.List -main = do print [] - print [0,3..20] - print [3] +main = do print [] + print [0,3..20] + print [3] print [2..7] print [20,2] print [1,2,37] -fromListN _ = length +fromListN _ = length fromList = length - |