aboutsummaryrefslogtreecommitdiff
path: root/test/PCH/Inputs/cxx-method.h
blob: d5d56fed0585e24af2316a30d3034ca9815f2b73 (plain)
1
2
3
4
5
6
7
8
9
struct S {
  void m(int x);

  S();
  S(const S&);

  operator const char*();
  operator char*();
};