mirror of
https://github.com/apple/swift.git
synced 2026-06-20 15:42:51 +02:00
bcdbeb4640
Previously we only excluded implicitly-created overrides, but it turns out explicit overrides are just as problematic and just as unnecessary. Fixes rdar://123633538.
14 lines
154 B
Objective-C
14 lines
154 B
Objective-C
#import <Foundation.h>
|
|
|
|
@interface ObjCClass : NSObject
|
|
|
|
- (nullable id)swiftMethod;
|
|
|
|
@end
|
|
|
|
@interface ObjCClass2 : NSObject
|
|
|
|
@end
|
|
|
|
void CImplFunc(void);
|