File tree Expand file tree Collapse file tree 3 files changed +20
-3
lines changed
Expand file tree Collapse file tree 3 files changed +20
-3
lines changed Original file line number Diff line number Diff line change 1- {-# LANGUAGE TypeOperators #-}
2-
31module Main (main ) where
42
53import Signatures (concatenateSig , incrementSig )
Original file line number Diff line number Diff line change 11{-# LANGUAGE OverloadedStrings #-}
2- {-# LANGUAGE TypeOperators #-}
32
43module Main (main ) where
54
Original file line number Diff line number Diff line change @@ -49,6 +49,14 @@ library
4949 hs-source-dirs : src
5050 default-language : Haskell2010
5151 ghc-options : -Wall
52+ other-extensions : CPP,
53+ FlexibleContexts,
54+ FlexibleInstances,
55+ FunctionalDependencies,
56+ MultiParamTypeClasses,
57+ OverloadedStrings,
58+ TypeOperators,
59+ UndecidableInstances
5260
5361executable demo-server
5462 hs-source-dirs : demo
@@ -63,6 +71,8 @@ executable demo-server
6371 mtl,
6472 text
6573 default-language : Haskell2010
74+ other-extensions : OverloadedStrings,
75+ TypeOperators
6676 else
6777 buildable : False
6878
@@ -80,6 +90,8 @@ executable demo-client
8090 mtl,
8191 text
8292 default-language : Haskell2010
93+ other-extensions : OverloadedStrings,
94+ TypeOperators
8395 else
8496 buildable : False
8597
@@ -105,3 +117,11 @@ test-suite tests
105117 test-framework-quickcheck2 >= 0.3 && < 0.4
106118 default-language : Haskell2010
107119 ghc-options : -Wall -fno-warn-missing-signatures -fno-warn-orphans
120+ other-extensions : CPP,
121+ FlexibleContexts,
122+ FlexibleInstances,
123+ MultiParamTypeClasses,
124+ OverloadedStrings,
125+ TypeOperators,
126+ TypeSynonymInstances,
127+ UndecidableInstances
You can’t perform that action at this time.
0 commit comments