C++程序  |  9行  |  67 B

#ifndef A_H
#define A_H

struct A {
  virtual void x();
};

#endif