blob: 38a5445a28d0524ed9c153393d129e3e180a3c1b (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
-- !! Test import-unused warnings on 'module M' exports
-- This one should not generate any warnings
module M (module Mod171_A, h) where
import Mod171_A -- This isn't unused...
import Mod171_B -- even though this imports all the same stuff
h :: Int -> Int
h = g
|