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
If a default argument is not followed only by default arguments, then there is an error.
// Default args need to be later arguments class None { test(x : None = None, y : None) : None { x } }
This, however, does not report an error. The code creates the error, but adds it to a Ast node that is removed by the rewrite rule.
The text was updated successfully, but these errors were encountered:
Closed by #669
Sorry, something went wrong.
No branches or pull requests
If a default argument is not followed only by default arguments, then there is an error.
This, however, does not report an error. The code creates the error, but adds it to a Ast node that is removed by the rewrite rule.
The text was updated successfully, but these errors were encountered: