#ifndef __D_h__
#define __D_h__

#include "B.h"

class D {
public:
  static void f() { B::f (); }
};


#endif // __D_h__
