Is it legal to use decltype with virtual member function pointers?
The following generates an internal error (C1001) with VS2012.
struct C
{
virtual void Foo() {}
typedef decltype(&C::Foo) type; //pointer
}
But this compiles fine:
struct C
{
virtual void Foo() {}
typedef decltype(C::Foo) type; //not pointer
}
Is it a bug?