Comment #0 by stanislav.blinov — 2020-06-23T13:50:11Z
According to grammar, LS and PS (0x2028 and 0x2029) are EndOfLine. But, if encountered while parsing an identifier, they're rejected as 'not allowed in identifier':
// ASCII end of line parses fine
int ascii
;
int ls ; // char 0x2028 not allowed in identifier
int ps ; // char 0x2029 not allowed in identifier
Comment #1 by robert.schadek — 2024-12-13T19:09:39Z