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
In the following snippet:
fn main(){ let x = 42f64; }
x is infered to i32. It looks like lexer parsed 42f64 as int literal. Related: #5
x
i32
The text was updated successfully, but these errors were encountered:
Merge #1604
a5fe9f7
1604: Fix failing type interference for floating point literal r=matklad a=theotherphil Fixes #1592 Co-authored-by: Phil Ellison <[email protected]>
Successfully merging a pull request may close this issue.
In the following snippet:
x
is infered toi32
. It looks like lexer parsed 42f64 as int literal.Related: #5
The text was updated successfully, but these errors were encountered: