The following chunk of code crashes the compiler:
__interface IFoo
{
void Calculate(int) {}
};
int main()
{
IFoo* foo;
foo->Calculate(31);
return 0;
}
The following chunk of code crashes the compiler:
__interface IFoo
{
void Calculate(int) {}
};
int main()
{
IFoo* foo;
foo->Calculate(31);
return 0;
}