Take a look at this formatted code:
int a;
string b = "test";
int c;
string d = @"test";
int e;
string f = @"\";
int g;
int h;
int i;
The last three lines are colored to look like strings.
This also fails, although it's not syntacticly correct.
string a = "\";
int i;
Fixing the bug in the second example does work, however.
string a = "\"";
int i;