-
Notifications
You must be signed in to change notification settings - Fork 4.7k
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: add missed open curly #61320
Fix: add missed open curly #61320
Conversation
Tagging subscribers to this area: @buyaa-n Issue DetailsClose #61282
|
Would be good to have a test like: [Fact]
public static void Test_CustomAttributeTypedArgument_ToString()
{
var argument = new CustomAttributeTypedArgument(new [] { new CustomAttributeTypedArgument(0) });
Assert.Equal("new CustomAttributeTypedArgument[1] { 0 }", argument.ToString());
} after: |
Yup, I've already found that place, thanks! In process with test now :) |
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, thanks!
The build failure unrelated, filed an issue for failure, merging |
/backport to release/6.0 |
Started backporting to release/6.0: https://github.com/dotnet/runtime/actions/runs/1437102307 |
Fixes #61282