Мне сложно найти это в Google.
struct a {
float m_x;
float m_z;
public:
a(float x): m_x(x) {}
};
class b : public a {
b(float z): m_z(z) {}
};
В clang 3.2:
error: member initializer 'm_z' does not name a non-static data member or base class
b(float z): m_z(z) {}
Подробнее здесь: https://stackoverflow.com/questions/184 ... base-class
Мобильная версия