blob: e6da435db4f281632909f16029a64f991c1e56ec (
plain)
1
2
3
4
5
6
7
8
9
|
{-# OPTIONS_GHC -fno-safe-infer #-}
-- | Basic test to see if no safe infer flag compiles
-- This module would usually infer safely, so it shouldn't be safe now.
-- We don't actually check that here though, see test '' for that.
module SafeFlags27 where
f :: Int
f = 1
|