|
|
От: |
Чили
|
|
| Дата: | 18.01.10 08:51 | ||
| Оценка: | |||
class base
{
protected:
int x;
public:
base() : x(0) {}
};
class derived : public base
{
pubic:
derived() : x(0) { }
// error C2614: 'derived' : illegal member initialization: 'x' is not a base or member
};