When building a PCH with modules enabled this import would assert in the ASTWriter and (if assertions were disabled) sometimes crash the compiler that loaded the resulting PCH when trying to lookup the submodule ID. rdar://problem/24137448 llvm-svn: 259859
14 lines
173 B
Objective-C
14 lines
173 B
Objective-C
@import category_top;
|
|
#import "category_right_sub.h"
|
|
|
|
@interface Foo(Right1)
|
|
-(void)right1;
|
|
@end
|
|
|
|
@interface Foo(Right2)
|
|
-(void)right2;
|
|
@end
|
|
|
|
@interface Foo(Duplicate)
|
|
@end
|