blob: 61cbde3bee856663a8de738ac6a3fc09a5c9d5d9 (
plain)
1
2
3
4
5
6
7
8
9
10
|
{-# OPTIONS_GHC -Wcompat-unqualified-imports #-}
module T17244B (hello) where
-- This should not warn with -Wcompat-unqualified-imports.
import qualified Data.List as List
hello :: [Int] -> Int
hello = List.sum
|