Skip to content
Snippets Groups Projects
Commit 470b34b6 authored by dterei's avatar dterei
Browse files

Fix conditional pragma to work with 6.12

parent d08650ac
No related branches found
No related tags found
No related merge requests found
{-# LANGUAGE CPP #-}
#if __GLASGOW_HASKELL__ >= 701
{-# LANGUAGE Safe #-}
#endif
......
{-# LANGUAGE CPP #-}
#if __GLASGOW_HASKELL__ >= 701
{-# LANGUAGE Safe #-}
#endif
......
{-# LANGUAGE CPP #-}
#if __GLASGOW_HASKELL__ >= 701
{-# LANGUAGE Safe #-}
#endif
......
{-# LANGUAGE NoImplicitPrelude, BangPatterns #-}
#if __GLASGOW_HASKELL__ >= 701
{-# LANGUAGE Trustworthy #-}
#endif
{-# LANGUAGE NoImplicitPrelude, BangPatterns #-}
-- |
-- The Haskell 2010 Prelude: a standard module imported by default
-- into all Haskell modules. For more documentation, see the Haskell 2010
-- Report <http://www.haskell.org/onlinereport/>.
module Prelude (
-- * Standard types, classes and related functions
......
{-# OPTIONS_GHC -fno-warn-unused-imports #-}
-- apparent bug in GHC, reports a bogus warning for the Prelude import below
#if __GLASGOW_HASKELL__ >= 701
{-# LANGUAGE Safe #-}
#endif
{-# OPTIONS_GHC -fno-warn-unused-imports #-}
-- apparent bug in GHC, reports a bogus warning for the Prelude import below
module System.IO.Error (
-- * I\/O errors
IOError, -- = IOException
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment