]> git.proxmox.com Git - rustc.git/blame - src/librustc_error_codes/error_codes/E0766.md
New upstream version 1.47.0+dfsg1
[rustc.git] / src / librustc_error_codes / error_codes / E0766.md
CommitLineData
f035d41b
XL
1A double quote byte string (`b"`) was not terminated.
2
3Erroneous code example:
4
5```compile_fail,E0766
6let s = b"; // error!
7```
8
9To fix this error, add the missing double quote at the end of the string:
10
11```
12let s = b""; // ok!
13```