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 5 m(int x)6void S::m(int x) { } 7 operator char*()8S::operator char *() { return 0; } 9 operator const char*()10S::operator const char *() { return 0; } 11 12 struct T : S {}; 13 14 const T a = T(); 15 T b(a); 16