File tree Expand file tree Collapse file tree 1 file changed +1
-5
lines changed Expand file tree Collapse file tree 1 file changed +1
-5
lines changed Original file line number Diff line number Diff line change 102
102
// CHECK-SAME: SWIFT_AVAILABILITY(macos,unavailable,message="'unavailableOnMacOSMethodRenamedToSimpleProperty' has been renamed to 'simpleProperty'");
103
103
104
104
// CHECK-NEXT: - (NSInteger)methodReturningInt SWIFT_WARN_UNUSED_RESULT;
105
- // CHECK-NEXT: - (NSInteger)methodRenamedToMethodWithoutCustomObjCNameWithValue:(NSInteger)value SWIFT_WARN_UNUSED_RESULT
106
- // CHECK-SAME: SWIFT_DEPRECATED_MSG("", "methodWithoutCustomObjCNameWithValue:")
107
105
// CHECK-NEXT: - (NSInteger)methodWithoutCustomObjCNameWithValue:(NSInteger)value SWIFT_WARN_UNUSED_RESULT;
108
106
109
107
// CHECK-NEXT: - (NSInteger)deprecatedMethodRenamedToMethodWithoutCustomObjCNameWithValue:(NSInteger)value SWIFT_WARN_UNUSED_RESULT
395
393
@objc public func unavailableOnMacOSMethodRenamedToSimpleProperty( ) { }
396
394
397
395
@objc ( methodReturningInt) public func simpleMethodReturningInt( ) -> Int { return - 1 }
398
-
399
- @available ( * , deprecated, renamed: " methodWithoutCustomObjCName(value:) " )
400
- @objc public func methodRenamedToMethodWithoutCustomObjCName( value: Int ) -> Int { return - 1 }
396
+
401
397
@objc public func methodWithoutCustomObjCName( value: Int ) -> Int { return - 1 }
402
398
403
399
@available ( * , deprecated, renamed: " methodWithoutCustomObjCName(value:) " )
You can’t perform that action at this time.
0 commit comments