1class C {
2public:
3    virtual void do_thing(char);
4    virtual void do_thing(int);
5};
6