[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / PCH / selector-warning.m
blob413f64f541976be87a97a14afdc25061b0dcf96a
1 // RUN: %clang_cc1 -x objective-c -emit-pch -o %t.h.pch %S/selector-warning.h
2 // RUN: %clang_cc1 -include-pch %t.h.pch %s
4 @interface Bar 
5 + (void) clNotOk;
6 - (void) instNotOk;
7 + (void) cl1;
8 @end
10 @implementation Bar
11 - (void) bar {}
12 + (void) cl1 {}
13 + (void) cl2 {}
14 @end
16 @implementation Bar(CAT)
17 - (void) b1ar {}
18 @end