1A double quote byte string (`b"`) was not terminated.23Erroneous code example:45```compile_fail,E07666let s = b"; // error!7```89To fix this error, add the missing double quote at the end of the string:1011```12let s = b""; // ok!13```
Findings
✓ No findings reported for this file.