blob: 87957a487535448aa8c1b5135a36270a47192867 (
plain)
1
2
3
4
5
6
7
8
|
{-# OPTIONS_GHC -fno-safe-infer #-}
-- | Basic test to see if no safe infer flag works
-- This module would usually infer safely, so it shouldn't be safe now.
module UnsafeInfered10_A where
f :: Int
f = 1
|