Sign in
◑
Theme
rust
/
rust
/
8662be8340e5e2bc06fe16b7df0a7d02ebdf5e64
/
.
/
compiler
/
rustc_error_codes
/
src
/
error_codes
/
E0763.md
blob: 095b779f3e78afdf50a425e1fa914896e76fae36 [
file
] [
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!
```