brintos

brintos / llvm-project-archived public Read only

0
0
Text · 351 B · c24ad92 Raw
16 lines · cpp
1// RUN: %clang_cc1 -x c++ -include %S/Inputs/cxx-method.h -verify %s2// RUN: %clang_cc1 -x c++ -emit-pch %S/Inputs/cxx-method.h -o %t3// RUN: %clang_cc1 -include-pch %t -verify %s4// expected-no-diagnostics5 6void S::m(int x) { }7 8S::operator char *() { return 0; }9 10S::operator const char *() { return 0; }11 12struct T : S {};13 14const T a = T();15T b(a);16