mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
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);
|