-
Notifications
You must be signed in to change notification settings - Fork 4.1k
New issue
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
Fix error message when passing in parameters by ref #20337
Fix error message when passing in parameters by ref #20337
Conversation
cc @VSadov @dotnet/roslyn-compiler for review. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
@@ -9259,59 +9259,139 @@ static class E | |||
} | |||
|
|||
[Fact] | |||
public void CircularImplicitConversions() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
CircularImplicitConversions [](start = 20, length = 27)
What happened with this test? #Resolved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Something strange with the merge. The test was not deleted, but the diff shows as it was.
In reply to: 123671280 [](ancestors = 123671280)
Done with review pass. |
@dotnet/roslyn-compiler - please review. This one is 9 days old. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Fixes #18477
Added tests for permutations for all ref kinds, even the ones that fail to parse, like
Method(ref readonly x)
.