mirror of
https://github.com/cc65/cc65.git
synced 2024-11-16 02:10:52 +00:00
9 lines
275 B
C
9 lines
275 B
C
/* Bug #2312 - Error recovery from preprocessor errors at the end of a declaration */
|
|
|
|
typedef int A; /* ';' consumption triggers PP below */
|
|
|
|
#define /* PP error during ';' consumption */
|
|
|
|
A f(void); /* Should be OK */
|
|
int A(void); /* Should be an error */
|