mirror of
https://github.com/google/ormolu.git
synced 2024-12-11 21:09:47 +03:00
ba64967c03
Essentially, it simply indents the constraints one layer, instead of hanging the constraints off of `class` or `instance`.
15 lines
147 B
Haskell
15 lines
147 B
Haskell
class Foo a
|
|
|
|
class Foo a => Bar a
|
|
|
|
class
|
|
(Foo a, Bar a)
|
|
=> Baz a
|
|
|
|
class
|
|
( Foo a -- Foo?
|
|
, Bar a -- Bar?
|
|
, Baz a -- Baz
|
|
)
|
|
=> BarBar a
|