The compiler finds a string literal that exceeds the length limit.
Possible solutions: cut the string to meet the limit or try to use double quotes instead of single quotes:
'long text' // error
"long text" // OK
The compiler finds a string literal that exceeds the length limit.
Possible solutions: cut the string to meet the limit or try to use double quotes instead of single quotes:
'long text' // error
"long text" // OK