Home | History | Annotate | Download | only in PCH
      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 
      4 void S::m(int x) { }
      5 
      6 S::operator char *() { return 0; }
      7 
      8 S::operator const char *() { return 0; }
      9