Files
swift-mirror/test/ClangImporter/Inputs/ibaction.h
Doug Gregor facf1996b1 [Clang importer] Don't transfer IBAction attributes that don't make sense.
Fixes an error emitted on declarations imported from Objective-C,
rdar://problem/31776315.
2017-04-22 21:38:23 -07:00

10 lines
202 B
Objective-C

@import ObjectiveC;
@protocol IBActionInProtocol
-(void) __attribute__((ibaction)) actionMethod:(_Nullable id)param;
@end
@interface ConformsToIBActionInProtocol : NSObject <IBActionInProtocol>
@end