Isolate deriving via test
parent
aeaa043e99
commit
b2f4262749
|
@ -363,6 +363,12 @@ data Foo = Bar
|
||||||
deriving anyclass (Show, Eq, Monad, Functor)
|
deriving anyclass (Show, Eq, Monad, Functor)
|
||||||
deriving newtype Show
|
deriving newtype Show
|
||||||
deriving newtype (Traversable, Foldable)
|
deriving newtype (Traversable, Foldable)
|
||||||
|
|
||||||
|
#test record deriving via
|
||||||
|
data Foo = Bar
|
||||||
|
{ foo :: Baz
|
||||||
|
, bars :: Bizzz
|
||||||
|
}
|
||||||
deriving ToJSON via (SomeType)
|
deriving ToJSON via (SomeType)
|
||||||
deriving (ToJSON, FromJSON) via (SomeType)
|
deriving (ToJSON, FromJSON) via (SomeType)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue