Last-Modified: Tue, 26 May 2026 07:41:59 GMT Expires: Fri, 23 May 2036 07:41:59 GMT
1 2 3
; inherits: c (access_specifier) @outdent #n8'>8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
BYTE "b''" error: empty character literal WHITESPACE "\n" BYTE "b'\\'" error: Missing trailing `'` symbol to terminate the byte literal WHITESPACE "\n" BYTE "b'\n'" error: byte constant must be escaped WHITESPACE "\n" BYTE "b'spam'" error: character literal may only contain one codepoint WHITESPACE "\n" BYTE "b'\\x0ff'" error: character literal may only contain one codepoint WHITESPACE "\n" BYTE "b'\\\"a'" error: character literal may only contain one codepoint WHITESPACE "\n" BYTE "b'\\na'" error: character literal may only contain one codepoint WHITESPACE "\n" BYTE "b'\\ra'" error: character literal may only contain one codepoint WHITESPACE "\n" BYTE "b'\\ta'" error: character literal may only contain one codepoint WHITESPACE "\n" BYTE "b'\\\\a'" error: character literal may only contain one codepoint WHITESPACE "\n" BYTE "b'\\'a'" error: character literal may only contain one codepoint WHITESPACE "\n" BYTE "b'\\0a'" error: character literal may only contain one codepoint WHITESPACE "\n" BYTE "b'\\u{0}x'" error: unicode escape in byte string WHITESPACE "\n" BYTE "b'\\u{1F63b}}'" error: unicode escape in byte string WHITESPACE "\n" BYTE "b'\\v'" error: unknown byte escape WHITESPACE "\n" BYTE "b'\\💩'" error: unknown byte escape WHITESPACE "\n" BYTE "b'\\●'" error: unknown byte escape WHITESPACE "\n" BYTE "b'\\\\\\r'" error: character literal may only contain one codepoint WHITESPACE "\n" BYTE "b'\\x'" error: numeric character escape is too short WHITESPACE "\n" BYTE "b'\\x0'" error: numeric character escape is too short WHITESPACE "\n" BYTE "b'\\xf'" error: numeric character escape is too short WHITESPACE "\n" BYTE "b'\\xa'" error: numeric character escape is too short WHITESPACE "\n" BYTE "b'\\xx'" error: invalid character in numeric character escape WHITESPACE "\n" BYTE "b'\\xы'" error: invalid character in numeric character escape WHITESPACE "\n" BYTE "b'\\x🦀'" error: invalid character in numeric character escape WHITESPACE "\n" BYTE "b'\\xtt'" error: invalid character in numeric character escape WHITESPACE "\n" BYTE "b'\\u'" error: incorrect unicode escape sequence WHITESPACE "\n" BYTE "b'\\u[0123]'" error: incorrect unicode escape sequence WHITESPACE "\n" BYTE "b'\\u{0x}'" error: invalid character in unicode escape WHITESPACE "\n" BYTE "b'\\u{'" error: unterminated unicode escape WHITESPACE "\n" BYTE "b'\\u{0000'" error: unterminated unicode escape WHITESPACE "\n" BYTE "b'\\u{}'" error: empty unicode escape WHITESPACE "\n" BYTE "b'\\u{_0000}'" error: invalid start of unicode escape WHITESPACE "\n" BYTE "b'\\u{0000000}'" error: overlong unicode escape WHITESPACE "\n" BYTE "b'\\u{FFFFFF}'" error: unicode escape in byte string WHITESPACE "\n" BYTE "b'\\u{ffffff}'" error: unicode escape in byte string WHITESPACE "\n" BYTE "b'\\u{ffffff}'" error: unicode escape in byte string WHITESPACE "\n" BYTE "b'\\u{DC00}'" error: unicode escape in byte string WHITESPACE "\n" BYTE "b'\\u{DDDD}'" error: unicode escape in byte string WHITESPACE "\n" BYTE "b'\\u{DFFF}'" error: unicode escape in byte string WHITESPACE "\n" BYTE "b'\\u{D800}'" error: unicode escape in byte string WHITESPACE "\n" BYTE "b'\\u{DAAA}'" error: unicode escape in byte string WHITESPACE "\n" BYTE "b'\\u{DBFF}'" error: unicode escape in byte string WHITESPACE "\n"