1 // RUN: %clang_cc1 -x c++ -emit-pch %S/Inputs/cxx-method.h -o %t
2 // RUN: %clang_cc1 -include-pch %t -verify %s
3
m(int x)4 void S::m(int x) { }
5
operator char*()6 S::operator char *() { return 0; }
7
operator const char*()8 S::operator const char *() { return 0; }
9