E0007: unterminated escaped char literal
Generated from rellum-diagnostics/src/db.rs.
Explanation
A character literal beginning with an escape marker must include the escaped character and a closing quote. Reaching the end of the line before that shape is complete leaves the char value undefined.
Common causes
- writing a char literal that ends after
\ - forgetting the closing quote after an escaped char
- using a string literal when more than one character is needed
Canonical fixes
- complete the escaped char literal
- use a string literal for multi-character text