inheritance-base.cpp 56 B

1234567
  1. class A
  2. {
  3. public:
  4. int x;
  5. A(int _x) : x(_x) {
  6. }
  7. };