Skip to content
Snippets Groups Projects
Commit 9a58cac8 authored by Herbert Valerio Riedel's avatar Herbert Valerio Riedel :man_dancing:
Browse files

Express OPTIONS_GHC as LANGUAGE pragmas


These two instances were missed previously for some unknown reason

Signed-off-by: Herbert Valerio Riedel's avatarHerbert Valerio Riedel <hvr@gnu.org>
parent 23892440
No related branches found
No related tags found
No related merge requests found
......@@ -2,7 +2,7 @@
{-# LANGUAGE FunctionalDependencies #-}
{-# LANGUAGE KindSignatures #-}
{-# LANGUAGE DataKinds #-}
{-# OPTIONS_GHC -XNoImplicitPrelude #-}
{-# LANGUAGE NoImplicitPrelude #-}
-- | /Since: 4.6.0.0/
module GHC.IP (IP(..)) where
......
......@@ -9,7 +9,8 @@
{-# LANGUAGE ExistentialQuantification #-}
{-# LANGUAGE RankNTypes #-}
{-# LANGUAGE UndecidableInstances #-} -- for compiling instances of (==)
{-# OPTIONS_GHC -XNoImplicitPrelude #-}
{-# LANGUAGE NoImplicitPrelude #-}
{-| This module is an internal GHC module. It declares the constants used
in the implementation of type-level natural numbers. The programmer interface
for working with type-level naturals should be defined in a separate library.
......
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