summaryrefslogtreecommitdiffstats
path: root/compiler/rustc_error_codes/src/error_codes/E0763.md
blob: 095b779f3e78afdf50a425e1fa914896e76fae36 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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!
```