mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
Covering two cases: external ObjC class extensions that add a conformances, and extensions of external Swift types that add a conformance. For both cases, we were not previously reading out the type name correctly, or at all. Resolves rdar://91832735
9 lines
166 B
Objective-C
9 lines
166 B
Objective-C
#import "testModA.h"
|
|
|
|
@implementation testModAClass
|
|
- (instancetype) init {
|
|
if ((self = [super init]) == nil) return nil;
|
|
self.x = 42;
|
|
return self;
|
|
}
|
|
@end |