Open jmcarthur opened 6 months ago
Running hindent on a class that includes a default associated type family has the effect of deleting the default.
Input haskell
class Foo a where type Bar a type instance Bar a = ()
Expected output haskell
Actual output haskell
class Foo a where type Bar a
Problem
Running hindent on a class that includes a default associated type family has the effect of deleting the default.
Input haskell
Expected output haskell
Actual output haskell