diff options
Diffstat (limited to 'AST.hs')
-rw-r--r-- | AST.hs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -8,7 +8,7 @@ data FunDef t = FunDef Name (Maybe Type) [FunEq t] deriving (Show) newtype Name = Name String - deriving (Show) + deriving (Show, Eq) data Type = TApp Type [Type] |