blob: 095b779f3e78afdf50a425e1fa914896e76fae36 [file] [log] [blame] [view]
A byte constant wasn't correctly ended.
Erroneous code example:
```compile_fail,E0763
let c = b'a; // error!
```
To fix this error, add the missing quote:
```
let c = b'a'; // ok!
```