Error code E0766

A double quote byte string (b") was not terminated.

Erroneous code example:

let s = b"; // error!
Run

To fix this error, add the missing double quote at the end of the string:

let s = b""; // ok!
Run

Back to list of error codes