ignores nested identifiers which results in unhappy end users. git-svn-id: svn://10.0.0.236/trunk@209634 18797224-902f-48f8-a5cc-f745e15eee43
13 lines
203 B
C
13 lines
203 B
C
/**
|
|
* Have you ever wondered what it takes to become an identifier?
|
|
*/
|
|
|
|
void this_should_probably_be_an_identifier(void)
|
|
{
|
|
}
|
|
|
|
#define BLAH void
|
|
BLAH this_should_probably_be_an_identifier_too(BLAH)
|
|
{
|
|
}
|