1 // RUN: %clang_cc1 -x c++ -include %S/Inputs/cxx-method.h -verify %s
2 // RUN: %clang_cc1 -x c++ -emit-pch %S/Inputs/cxx-method.h -o %t
3 // RUN: %clang_cc1 -include-pch %t -verify %s
4 // expected-no-diagnostics
8 S::operator char *() { return 0; }
10 S::operator const char *() { return 0; }