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