File tree Expand file tree Collapse file tree 3 files changed +15
-0
lines changed Expand file tree Collapse file tree 3 files changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -94,6 +94,7 @@ tests = testGroup
9494 , goldenTest " GoldenNote.hs" 2 8 Auto " "
9595 , goldenTest " GoldenPureList.hs" 2 12 Auto " "
9696 , goldenTest " GoldenGADTDestruct.hs" 7 17 Destruct " gadt"
97+ , goldenTest " GoldenGADTAuto.hs" 7 13 Auto " "
9798 ]
9899
99100
Original file line number Diff line number Diff line change 1+ {-# LANGUAGE GADTs #-}
2+ module GoldenGADTAuto where
3+ data CtxGADT a where
4+ MkCtxGADT :: (Show a , Eq a ) => a -> CtxGADT a
5+
6+ ctxGADT :: CtxGADT ()
7+ ctxGADT = _auto
Original file line number Diff line number Diff line change 1+ {-# LANGUAGE GADTs #-}
2+ module GoldenGADTAuto where
3+ data CtxGADT a where
4+ MkCtxGADT :: (Show a, Eq a) => a -> CtxGADT a
5+
6+ ctxGADT :: CtxGADT ()
7+ ctxGADT = (MkCtxGADT ())
You can’t perform that action at this time.
0 commit comments