blob: ee5b53ee8e9f2970d1c4e27283b66121be98cd51 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
{-# OPTIONS -XNoImplicitPrelude #-}
-- This one crashed GHC 6.6 in lookupDeprec
-- See Trac #1128
-- and Note [Used names with interface not loaded]
-- in RnNames
module ShouldCompile where
import Prelude
foo :: Int -> Float
foo x = 3.0
|