josephsumabat
Results
2
issues of
josephsumabat
The `(->.)` operator used by [some libraries](https://hoogle.haskell.org/?hoogle=-%3E.) results in a parsing failure Simple reproduction: ``` import Database.Esqueleto.PostgreSQL.JSON ((->.)) ```
Having a functional dependency with a type family causes parsing to fail ``` type family MyTypeFamily (a :: Abc) :: (r :: Type) | a -> r where MyTypeFamily 'Cba...