Skip to content

Commit

Permalink
Fix test grammars for GHC 7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
knothed committed Jun 16, 2021
1 parent 3fd9afc commit 021c303
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/test/data/monaderror-explist.y
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
{-# LANGUAGE FunctionalDependencies, FlexibleInstances #-}
{-# LANGUAGE FunctionalDependencies, FlexibleInstances, MultiParamTypeClasses #-}
module Main where

import Data.Char
Expand Down
2 changes: 1 addition & 1 deletion packages/test/data/monaderror.y
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
{-# LANGUAGE FunctionalDependencies, FlexibleInstances #-}
{-# LANGUAGE FunctionalDependencies, FlexibleInstances, MultiParamTypeClasses #-}
module Main where

import Control.Monad (when)
Expand Down
2 changes: 1 addition & 1 deletion packages/test/data/typeclass_monad_lexer.y
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
{-# LANGUAGE FunctionalDependencies, FlexibleInstances, UndecidableInstances #-}
{-# LANGUAGE FunctionalDependencies, FlexibleInstances, UndecidableInstances, MultiParamTypeClasses #-}
import Control.Monad (liftM, ap)
import Control.Applicative as A
}
Expand Down

0 comments on commit 021c303

Please sign in to comment.