From: Rozental, Gennadiy (gennadiy.rozental_at_[hidden])
Date: 2004-05-19 10:55:17


Does it incorrect from standard standpoint:

class A {
    int member;
};

class B : A {
public:
    using A::member;
};

If it is allowed why so many compilers having issues with it?

Gennadiy.