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
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