blob: 250711345c11db9dd40f1d3ba688d218f7c62759 (
plain)
1
2
3
4
5
6
7
8
9
10
|
module ShouldCompile where
import Prelude ()
import Control.Monad( Monad(return), mapM )
-- Should report Monad and return as unused imports
import GHC.Base
-- But not their import from here
x = True
y x = mapM
|