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
Seems identifiers between var and = simply get ignored. For example the following compiles/runs:
var
=
for i bleh bleh this runs fine = 1 to 20 do printfn "%d" i
The text was updated successfully, but these errors were encountered:
Even more fun:
let foo x = x for i foo 12 = 1 to 20 do printfn "%d" i
Prints 1-12 in FSI on a new line, just as your repro.
Definitely feels like a bug 😄
Sorry, something went wrong.
How odd. Anyway fix is at #6621
Re-opening as this is not resolved in VS
Confirmed as fixed in 16.2.
No branches or pull requests
Seems identifiers between
var
and=
simply get ignored. For example the following compiles/runs:The text was updated successfully, but these errors were encountered: