Skip to content

Commit 0ae997c

Browse files
committed
Fix test grammars for GHC 7.0
1 parent 930c006 commit 0ae997c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

packages/test/data/monaderror-explist.y

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
{-# LANGUAGE FunctionalDependencies, FlexibleInstances #-}
2+
{-# LANGUAGE FunctionalDependencies, FlexibleInstances, MultiParamTypeClasses #-}
33
module Main where
44

55
import Data.Char

packages/test/data/monaderror.y

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
{-# LANGUAGE FunctionalDependencies, FlexibleInstances #-}
2+
{-# LANGUAGE FunctionalDependencies, FlexibleInstances, MultiParamTypeClasses #-}
33
module Main where
44

55
import Control.Monad (when)

packages/test/data/typeclass_monad_lexer.y

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
{-# LANGUAGE FunctionalDependencies, FlexibleInstances, UndecidableInstances #-}
2+
{-# LANGUAGE FunctionalDependencies, FlexibleInstances, UndecidableInstances, MultiParamTypeClasses #-}
33
import Control.Monad (liftM, ap)
44
import Control.Applicative as A
55
}

0 commit comments

Comments
 (0)