blob: 4411f3d1a28e9e967f10cf2e64ba871d34efb81a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
{-# LANGUAGE Haskell2010 #-}
{-# OPTIONS_GHC -fwarn-unsafe #-}
-- | Basic test to see if Safe warning flags compile
-- Warn if module is inferred unsafe
-- In this test the warning _should_ fire
module SafeFlags22 where
import System.IO.Unsafe
f :: Int
f = 1
|