Closed
Description
Bugzilla Link | 4499 |
Resolution | FIXED |
Resolved on | Jul 07, 2010 18:24 |
Version | unspecified |
OS | Linux |
Extended Description
Testcase:
int t1 = '\'';
int t2 = '\\';
int t3 = '\
';
All of these should be accepted (the first two are multi-character character constants).
Additional testcase:
int t4 = '\'; // Invalid, but currently prints a random
// large number of diagnostics
Issue found by code inspection.