I have the following snippet, which compiles fine, but when I try to run it I get an error from cmdargs. *** Exception: System.Console.CmdArgs.Implicit, unexpected flag (edit): Main.Sel. It works if I change the Sel to Int, but in my real use case I'd like to have type enforcement that differentiates selections from Ints.
I can fix it by using Int with cmdargs and after checking the arguments casting it to Sel, but I think this is suboptimal solution.
{-# LANGUAGE DeriveDataTypeable, GeneralizedNewtypeDeriving #-}
import System.Console.CmdArgs
import System.Console.CmdArgs.Default
newtype Sel = Sel Int deriving (Num, Real, Integral, Show, Read, Data, Typeable, Enum, Eq, Ord, Default)
data Foo = Foo {
edit :: Sel
} deriving (Show, Read, Data, Typeable)
foo = Foo {
edit = def
}
main = do
a <- cmdArgs foo
print a