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