Sign in
rust
/
rust
/
b032fac34e5be72aa02748eadd4e8d8917a7e758
/
.
/
compiler
/
rustc_error_codes
/
src
/
error_codes
/
E0765.md
blob: 456e3f3e9e4089c116872a907b1c221ea36b84ee [
file
] [
log
] [
blame
] [
view
]
A
double
quote
string
(
`"`
)
was
not
terminated
.
Erroneous
code example
:
```compile_fail,E0765
let s = "; // error!
```
To
fix
this
error
,
add the missing
double
quote at the
end
of the
string
:
```
let s = ""; // ok!
```