-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Closed
Labels
Area-CompilersArea-Language DesignFeature - Utf8StringLiteralsFeature RequestResolution-FixedThe bug has been fixed and/or the requested behavior has been implementedThe bug has been fixed and/or the requested behavior has been implemented
Milestone
Description
Version Used:
32a81dd
Steps to Reproduce:
using System;
public class C {
public ReadOnlySpan<byte> M() => "abc"u8 + "def"u8;
}Expected Behavior:
Produces a result equivalent to:
using System;
public class C {
public ReadOnlySpan<byte> M() => "abcdef"u8;
}This is valuable for very long UTF-8 literals such that you want to split them across lines.
Actual Behavior:
Fails to compile.
Relates to test plan #58848
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
Area-CompilersArea-Language DesignFeature - Utf8StringLiteralsFeature RequestResolution-FixedThe bug has been fixed and/or the requested behavior has been implementedThe bug has been fixed and/or the requested behavior has been implemented