blob: 5e775dd112040b243bf82d9ccb05d3aa5c8d2eda (
plain)
1
2
3
4
5
6
7
8
9
|
{-# OPTIONS_GHC -fwarn-implicit-prelude -fwarn-unused-imports #-}
module ShouldCompile where
import Prelude ()
-- !!! should produce no warnings
-- (the other use of importing nothing is
-- to nullify the implicit import of the Prelude)
|