C++程序  |  10行  |  65 B

struct A {
  int x;
};

struct B : A {
  int y;
  int foo();
};