blob: 413f64f541976be87a97a14afdc25061b0dcf96a [file] [log] [blame]
Fariborz Jahaniancad910d2010-07-23 20:32:57 +00001// 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
3
4@interface Bar
5+ (void) clNotOk;
6- (void) instNotOk;
7+ (void) cl1;
8@end
9
10@implementation Bar
11- (void) bar {}
12+ (void) cl1 {}
13+ (void) cl2 {}
14@end
15
16@implementation Bar(CAT)
17- (void) b1ar {}
18@end
19