We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
For example:
a = nil while a.nil? a = 1 end # This currently is (Int32 | Nil) but should be Int32 p typeof(a) # => (Int32 | Nil)
The workaround is to put a = a.nil! until this is implemented.
a = a.nil!
The same happens with until:
until
a = nil until a a = 1 end p typeof(a) # => (Int32 | Nil)
Extracted from #4239
The text was updated successfully, but these errors were encountered:
b7e048b
No branches or pull requests
For example:
The workaround is to put
a = a.nil!
until this is implemented.The same happens with
until
:Extracted from #4239
The text was updated successfully, but these errors were encountered: