blob: feb45161105439957ba526cd1b37962557649c3c (
plain)
1
2
3
4
5
6
7
8
9
|
{-# OPTIONS_GHC -trust base, -trust bytestring #-}
-- | 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 SafeFlags28 where
f :: Int
f = 1
|