Have code that uses type alias ubiquitously: ```python type Count = int | Num ``` where `Num` is `int`-like. `Num` and `int` interact and coexist. Has been running fine compiled with Mypyc. https://github.com/python/mypy/commit/e64a84b118bb338ec6efd428d398e6ebd5b79bfc has introduced some problem. Now getting `TypeError: tm.num.Num object expected; got int`.
Have code that uses type alias ubiquitously:
where
Numisint-like.Numandintinteract and coexist. Has been running fine compiled with Mypyc.e64a84b has introduced some problem. Now getting
TypeError: tm.num.Num object expected; got int.