C++程序  |  14行  |  94 B

struct A {
  int x;
};

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

enum E {
  a = 0,
  b = 1
};