A character literal wasn't ended with a quote.

Erroneous code example:

static C: char = '●; // error!

To fix this error, add the missing quote:

static C: char = '●'; // ok!