Sign in
rust
/
rust
/
499fca9a7def7c05d4e2a73e00e6d64a2bc9cb26
/
.
/
compiler
/
rustc_error_codes
/
src
/
error_codes
/
E0762.md
blob: b01ded4a86616eba3664c40e47f6da2f2830a78d [
file
] [
log
] [
blame
] [
view
]
A character literal wasn
't ended with a quote.
Erroneous code example:
```compile_fail,E0762
static C: char = '
●;
// error!
```
To fix this error, add the missing quote:
```
static
C
:
char
=
'●'
;
// ok!
```