Sign in
rust
/
rust
/
548b5d2406cb0a79d67e745dc3bf45e7eddbb607
/
.
/
compiler
/
rustc_error_codes
/
src
/
error_codes
/
E0763.md
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!
```