mirror of
https://github.com/cc65/cc65.git
synced 2024-11-12 07:07:19 +00:00
12 lines
174 B
C
12 lines
174 B
C
/* bug 1889 - endless errors due to failure in recovery from missing identifier */
|
|
|
|
int enum { a } x;
|
|
inline enum { b };
|
|
|
|
_Static_assert();
|
|
|
|
int main(void)
|
|
{
|
|
return 0;
|
|
}
|