1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-08 15:29:37 +00:00
cc65/test/ref/bug1889-missing-identifier.c

12 lines
174 B
C
Raw Normal View History

2022-11-09 18:11:54 +00:00
/* bug 1889 - endless errors due to failure in recovery from missing identifier */
int enum { a } x;
inline enum { b };
_Static_assert();
2022-11-09 18:11:54 +00:00
int main(void)
{
return 0;
}