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