mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
Fixes an error emitted on declarations imported from Objective-C, rdar://problem/31776315.
10 lines
202 B
Objective-C
10 lines
202 B
Objective-C
@import ObjectiveC;
|
|
|
|
@protocol IBActionInProtocol
|
|
-(void) __attribute__((ibaction)) actionMethod:(_Nullable id)param;
|
|
@end
|
|
|
|
@interface ConformsToIBActionInProtocol : NSObject <IBActionInProtocol>
|
|
@end
|
|
|