You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
parse_unicode_escape_in_byte = unicode escape in byte string
669
+
.label = {parse_unicode_escape_in_byte}
670
+
.help = unicode escape sequences cannot be used as a byte or in a byte string
671
+
672
+
parse_empty_unicode_escape = empty unicode escape
673
+
.label = this escape must have at least 1 hex digit
674
+
675
+
parse_zero_chars = empty character literal
676
+
.label = {parse_zero_chars}
677
+
678
+
parse_lone_slash = invalid trailing slash in literal
679
+
.label = {parse_lone_slash}
680
+
681
+
parse_unskipped_whitespace = non-ASCII whitespace symbol '{$ch}' is not skipped
682
+
.label = {parse_unskipped_whitespace}
683
+
684
+
parse_multiple_skipped_lines = multiple lines skipped by escaped newline
685
+
.label = skipping everything up to and including this point
686
+
687
+
parse_unknown_prefix = prefix `{$prefix}` is unknown
688
+
.label = unknown prefix
689
+
.note = prefixed identifiers and literals are reserved since Rust 2021
690
+
.suggestion_br = use `br` for a raw byte string
691
+
.suggestion_whitespace = consider inserting whitespace here
692
+
693
+
parse_too_many_hashes = too many `#` symbols: raw strings may be delimited by up to 255 `#` symbols, but found {$num}
694
+
695
+
parse_unknown_start_of_token = unknown start of token: {$escaped}
696
+
.sugg_quotes = Unicode characters '“' (Left Double Quotation Mark) and '”' (Right Double Quotation Mark) look like '{$ascii_str}' ({$ascii_name}), but are not
697
+
.sugg_other = Unicode character '{$ch}' ({$u_name}) looks like '{$ascii_str}' ({$ascii_name}), but it is not
698
+
.help_null = source files must contain UTF-8 encoded text, unexpected null bytes might occur when a different encoding is used
0 commit comments