NoCharEscape
DRAFT
Observed

NoCharEscape
Incorrect

\ is a normal character in char and String literals

Correct

\ is an escape character in char and String literals

Correction
Here is what's right.

The backslash (\) starts an escape sequence. There must be something following the \ (e.g., like \n or \\ or \"), and the \ itself is not part of the content of the literal.