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