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
strictly check operator overload ambiguity (#2762) (dfc8a65)
Operator overload is an internal mechanism, it can support to compare user-defined class, but it need to be limited. a == b and b == a should run the same function and get the same result in semantic level. Allowing ambiguity is bug prone.
report error for mulitple union type (#2872) (1847c8f)
ignore this (#2834) (b640ff2)
This is a dummy commit to create a new release.
Other
Compile incrementors in for loops within the initializer's flow (#2826) (9102c05)
It turns out that incrementors were compiled with the body's flow, which
meant that the incrementor had access to local variables declared in the
body. Now, incrementors no longer have access to such variables.