Apparently, the syntax highlighter thinks that this innocent single-quote apostrophe in the comment within the token string would open a character literal. ```d import std.stdio; void main() { // comment (green) writeln(q{ // When this function gets called, the this pointer isn't }); // comment; highlighter thinks this is a character literal // oh' well } ``` 