Files
swift-mirror/test/multifile/Inputs/objc-protocol-bridging.h
Doug Gregor e15f67e453 [Type checker] Marking a class as @objc doesn’t require an interface type.
Fixes the crash in SR-8540 / rdar://problem/43383512.
2018-08-20 10:05:13 -07:00

8 lines
123 B
Objective-C

@import Foundation;
@class SwiftClass;
@protocol ObjCProtocol
@optional
-(void)method:(nullable SwiftClass *)object;
@end