llvm-for-llvmta/tools/clang/test/Index/Inputs/hidden-redecls-sub.h

8 lines
90 B
C
Raw Normal View History

2022-04-25 13:02:35 +02:00
@protocol P1
- (void)p1_method;
- (void)p1_method;
@end
@interface Foo (SubP1) <P1>
@end