cxx-method.cpp revision e5a54b600f74dcb6cca27543df2757115711d80a
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
4void S::m(int x) { }
5
6S::operator char *() { return 0; }
7
8S::operator const char *() { return 0; }
9