Why I can't have pointer to member like this:
#include <iostream>
#include <stdlib.h> /* malloc, free, rand */
using namespace std;
class Pool{};
struct FE{
static Pool pool;
};
Pool FE::pool;
int main() {
Pool FE::* pmd = &FE::pool;
return 0;
}
What I am doing wrong?
pool
is a global variable that happens to live in the scope ofFE
; pointers to members only point to members of instances of classes.