Hi,
I like to have a pointer to an interface method,
like this:
interface Item
{
void work();
}
int main(char[][] args)
{
auto s = &Item.work
return 0;
}
But this example fails because of an "undefined symbol" for Item.work.
Is this a bug or intended behaviour?