Open pbrisbin opened 3 years ago
Given:
something :: (MonadIO m, GraphulaContext m '[MathQuestion, MathQuestionSkill]) => a something = undefined
Expected:
Actual:
something :: (MonadIO m, GraphulaContext m '[MathQuestion , MathQuestionSkill]) => a something = undefined
We experience this on v0.13.1.0 with a relatively heavy configuration, but it reproduces on https://hexagoxel.de/brittany/ with its defaults too:
Here's a shorter way to reproduce the same problem:
$ cat Example.hs a :: '[c, d] $ cabal exec -- brittany Example.hs a :: '[c , d]
Given:
Expected:
Actual:
We experience this on v0.13.1.0 with a relatively heavy configuration, but it reproduces on https://hexagoxel.de/brittany/ with its defaults too: