-
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
Implement concatenation operator for "u8" literals. #62044
Conversation
CC @davidwengier This is a small addition to the "UTF8 Literals" feature. Please let me know if you have any concerns regarding impact on IDE. Are there any specific IDE tests I should add? |
Thanks, I don't think this introduces any concerns or new test areas for IDE |
@RikkiGibson, @cston, @dotnet/roslyn-compiler Please 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 Thanks (iteration 1)
@RikkiGibson, @cston, @dotnet/roslyn-compiler For the second review. |
CompileAndVerify(comp, expectedOutput: @"called", verify: Verification.Fails).VerifyDiagnostics(); | ||
} | ||
|
||
[ConditionalFact(typeof(CoreClrOnly))] |
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.
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.
[Fact]
, here and similar tests below?
Perhaps tests with private implementation of ReadOnlySpan
can be adjusted this way.
Thanks! |
dotnet/csharplang#6221
Relates to test plan #58848