packages feed

fourmolu-0.7.0.0: data/examples/declaration/type-synonyms/multi-line-four-out.hs

type Foo a b c =
    Bar c a b

type Foo
    a
    b
    c =
    Bar c a b

type Foo =
    Bar
        Baz
        Quux

type API =
    "route1" :> ApiRoute1
        :<|> "route2" :> ApiRoute2 -- comment here
        :<|> OmitDocs :> "i" :> ASomething API

type A -- foo
    =
    B