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
0.
pub fn main() { 0. .to_string(); }
formats currently to:
pub fn main() { 0..to_string(); }
Ideally this should be reformatted to be:
pub fn main() { (0.).to_string(); }
so as to avoid confusion.
The text was updated successfully, but these errors were encountered:
Does the following parse as a float literal and a method call? or a range?
If it's a range then it's definitely a bug.
Sorry, something went wrong.
A range.
Got it! Thanks for the report!
Successfully merging a pull request may close this issue.
formats currently to:
Ideally this should be reformatted to be:
so as to avoid confusion.
The text was updated successfully, but these errors were encountered: