[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / PCH / cxx-method.cpp
blobc24ad9297588a1f1581f9ac502ee28963adac261
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
6 void S::m(int x) { }
8 S::operator char *() { return 0; }
10 S::operator const char *() { return 0; }
12 struct T : S {};
14 const T a = T();
15 T b(a);