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
This could be an issue with the C++ parser or the conformance harness, but the following byte literal with invalid UTF-8 characters evaluates incorrectly: b'\\000\\xff' yields bytes_value:"\xff" when the desired output is bytes_value:"\x00\xff"
The text was updated successfully, but these errors were encountered:
This could be an issue with the C++ parser or the conformance harness, but the following byte literal with invalid UTF-8 characters evaluates incorrectly:
b'\\000\\xff'
yieldsbytes_value:"\xff"
when the desired output isbytes_value:"\x00\xff"
The text was updated successfully, but these errors were encountered: