blob: c97fa885d1fd4fa39b9b26ad4a6265ceb995dc38 (
plain)
1
2
3
4
5
6
7
8
9
|
{-# OPTIONS_GHC -fwarn-safe #-}
-- | Basic test to see if Safe warning flags compile
-- Warn if module is infered safe
-- In this test the warning _should_ fire
module SafeFlags25 where
f :: Int
f = 1
|