``` purescript fromJust :: forall a. Partial => Maybe a -> a fromJust (Just x) = x ``` If you rename the type variable to something else it works, so I assume this is to do with the `Partial` handling @paf31?
If you rename the type variable to something else it works, so I assume this is to do with the
Partialhandling @paf31?