THRIFT-2641 Improvements to Haskell Compiler/Libraries
- test/test.sh integration
- add json and compact protocol
This closes #175
Signed-off-by: Roger Meier <roger@apache.org>
diff --git a/test/hs/NameConflictTest_Main.hs b/test/hs/NameConflictTest_Main.hs
index 5d0b17a..7de0f4d 100644
--- a/test/hs/NameConflictTest_Main.hs
+++ b/test/hs/NameConflictTest_Main.hs
@@ -1,3 +1,4 @@
+{-# OPTIONS_GHC -fno-warn-unused-imports #-}
module Main where
import qualified Prelude as P
@@ -16,4 +17,4 @@
P.putStrLn "Values:"
P.print ([JUST, TRUE, FALSE] :: [Maybe])
P.print ([LEFT, RIGHT] :: [Either])
- P.print (Problem_ (P.Just P.True) (P.Just P.False))
+ P.print (Problem_ P.True P.False)