1 struct S {
2   void m(int x);
3 
4   S();
5   S(const S&);
6 
7   operator const char*();
8   operator char*();
9 };
10