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