blob: 456e3f3e9e4089c116872a907b1c221ea36b84ee [file] [log] [blame] [view]
A double quote string (`"`) was not terminated.
Erroneous code example:
```compile_fail,E0765
let s = "; // error!
```
To fix this error, add the missing double quote at the end of the string:
```
let s = ""; // ok!
```