reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | // RUN: %clang_cc1 -emit-pch -o %t1 %S/chain-predecl.h -x objective-c // RUN: %clang_cc1 -emit-pch -o %t2 %s -x objective-c -include-pch %t1 // Test predeclarations across chained PCH. @interface Foo -(void)bar; @end @interface Boom -(void)bar; @end @protocol Pro -(void)baz; @end @protocol Kaboom -(void)baz; @end |