blob: ab3497c6ab86fbfb3a4870556a1db90ae64e5831 (
plain)
1
2
3
4
5
6
7
8
9
|
-- | Should fail compilation because safe imports aren't enabled
-- not because of trying to import an unsafe module
module Mixed01 where
import safe System.IO.Unsafe
f :: Int
f = 1
|