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