Argument to __identifier keyword

  • Thread starter Thread starter Simon Cheng
  • Start date Start date
S

Simon Cheng

Hi,

In MC++ spec 22 __identifier Keyword:

The argument to __identifier shall be a C++ keyword.

But the following compiles fine:

int main()
{
int __identifier(num) = 123;
return __identifier(num);
}

What am I missing?

Thanks,
Simon
 
Simon said:
Hi,

In MC++ spec 22 __identifier Keyword:

The argument to __identifier shall be a C++ keyword.

But the following compiles fine:

int main()
{
int __identifier(num) = 123;
return __identifier(num);
}

What am I missing?

That the compiler does more than the spec requires?

-cd
 
Back
Top