1A character literal wasn't ended with a quote.23Erroneous code example:45```compile_fail,E07626static C: char = '●; // error!7```89To fix this error, add the missing quote:1011```12static C: char = '●'; // ok!13```
Findings
✓ No findings reported for this file.