-
Notifications
You must be signed in to change notification settings - Fork 326
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Boolean.False == False
is false
#6076
Comments
Possibly related:
|
Thanks @Akirathan for taking a look. |
I guess you mean exactly this:
Does not seem related at first sight, because that is failing due to the casting done through invocation. Moreover, I tried running that snippet on engine from 12/2022, and it was still failing, so this issue is an old one.
I will fix that, should be pretty much straightforward. The problem is that |
The best fix is to make sure |
Pavel Marek reports a new STANDUP for today (2023-03-27): Progress: Fixing the special handling for Boolean.False. Tried to do that "properly" via ApplicationSaturation compler phase, but gave that up after some time - Both False and Boolean.False could be just transformed to false literal in the IR, so that we don't have to special handling during runtime. It should be finished by 2023-03-28. |
The dropdown puts in
Boolean.True
andBoolean.False
. There is a problem thatBoolean.False
!=False
.The text was updated successfully, but these errors were encountered: