mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-12-23 07:52:06 +00:00
ec315f1002
When deserializing ObjCInterfaceDecl with definition data, if we already have a definition, try to keep the definition invariant; also pull in the categories even if it is not what getDefinition returns (this effectively combines categories). rdar://27926200 rdar://26708823 llvm-svn: 281119
11 lines
250 B
Objective-C
11 lines
250 B
Objective-C
// RUN: rm -rf %t
|
|
// RUN: %clang_cc1 -fmodules-cache-path=%t -fmodules -fimplicit-module-maps -I %S/Inputs/lookup-assert %s -verify
|
|
// expected-no-diagnostics
|
|
|
|
#include "Derive.h"
|
|
#import <H3.h>
|
|
@implementation DerivedInterface
|
|
- (void)test {
|
|
}
|
|
@end
|