Files
clang-p2996/clang/test/Modules/Inputs/category_top.h
Douglas Gregor eed4979db9 Treat hidden Objective-C protocol definitions as if they were
undefined, and don't find methods or protocols within those protocol
definitions. This completes <rdar://problem/10634711>.

llvm-svn: 172686
2013-01-17 00:38:46 +00:00

24 lines
196 B
Objective-C

@interface Foo
@end
@interface Foo(Top)
-(void)top;
@end
@interface Foo(Top2)
-(void)top2;
@end
@interface Foo(Top3)
-(void)top3;
@end
@protocol P1
@end
@protocol P2
@end
@protocol P3, P4;