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
Before
match i.Operand with | :? (Instruction[]) -> true | _ -> false
After
match i.Operand with | :? Instruction [] -> true | _ -> false
error FS0010: Unexpected symbol'[' in pattern matching. Expected '->' or other token.
The text was updated successfully, but these errors were encountered:
Also in cast expression
i.Operand :?> (Instruction [])
becoming
i.Operand :?> Instruction []
with the same compiler error.
Sorry, something went wrong.
First case fixed by #317.
Wasn't able to reproduce second case, for example ([] :> obj) :?> int seq is valid code.
([] :> obj) :?> int seq
@SteveGilham, if you still see this as error, please post self-contained snippet for this case.
No branches or pull requests
Before
After
error FS0010: Unexpected symbol'[' in pattern matching. Expected '->' or other token.
The text was updated successfully, but these errors were encountered: