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
SA1119 is reported in the following code:
int x = 0, y = 0; (b ? ref x : ref y) = 1;
But code without parenthesis does not compile.
The text was updated successfully, but these errors were encountered:
Update SA1119 to allow parenthesis around a ref ternary conditional e…
b6f0e8e
…xpression when it is the left-hand side of an assigment DotNetAnalyzers#3712
380924c
Successfully merging a pull request may close this issue.
SA1119 is reported in the following code:
But code without parenthesis does not compile.
The text was updated successfully, but these errors were encountered: