blob: 0d6a5e1ea6ec9e5f01a9edebeb55c7ea43b24c1d (
plain)
1
2
3
4
5
6
7
|
-- We don't want to warn about duplicate exports for things exported
-- by both "module" exports
module T4478 (module Prelude, module Data.List) where
import Prelude
import Data.List
|