次の問題は、それほど奇妙に思えませんが、私を夢中にさせます。
class Foo;
// This is the location of the first error code
// ↓
int (Foo::*)(int) getPointer()
{
return 0;
}
GCCは私に与えます:
error: expected unqualified-id before ')' token
error: expected initializer before 'getPointer'
PS: -std=c++11 でコンパイルします