[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / PCH / Inputs / chain-selectors1.h
blob989b490a555ca9e1094de054eae71a582f05b274
1 @interface X
2 -(void)f;
3 -(void)f2;
4 -(void)g:(int)p;
5 -(void)h:(int)p1 foo:(int)p2;
6 @end
8 void foo1(void) {
9 // FIXME: Can't verify warnings in headers
10 //(void)@selector(x);
11 (void)@selector(f);
14 @interface X (Blah)
15 - (void)blah_method;
16 @end