blob: 6155b830f06a7fd94187b9d4c3644489c62a9f65 (
plain)
1
2
3
4
5
6
7
8
9
|
-- !!! Default export list isn't the same as (module M)
-- This should succeed, exporting only the local 'sort',
-- and not being confused by the 'sort' from 'List'.
-- (Hugs gets this wrong)
module M where
import Data.List as M
sort = "foo"
|