You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 3, 2024. It is now read-only.
We have some logic in wrapInfix to try to detect the now-deprecated * kind. This logic just checks that the string representation matches (although it fails to check the unicode case) and that the name is in the TcClsName namespace.
Yet this catches more operators than it should.
{-# LANGUAGE TypeOperators, NoStarIsType #-}
moduleGiveMeMyParenswheretype (*) a= (,) a
Note that the output is missing parens around the *: