#ifndef __C_h__
#define __C_h__

class C {
    void g () {}
public:
    void f () { g (); }
};

#endif // __C_h__
