1
1
mirror of https://github.com/google/ormolu.git synced 2024-12-02 23:43:34 +03:00
ormolu/data/examples/declaration/class/multi-parameters1-out.hs

16 lines
204 B
Haskell

{-# LANGUAGE MultiParamTypeClasses #-}
class Foo a b where foo :: a -> b
-- | Something.
class Bar a b c d where
bar
:: a
-> b
-> c
-> d
class -- Before name
Baz where
baz :: Int