Skip to content

Commit 7c81c36

Browse files
committed
[API Notes] Add tests for API notes that change types of Clang declarations.
Testing for rdar://problem/28943642.
1 parent c00d9ce commit 7c81c36

File tree

5 files changed

+39
-0
lines changed

5 files changed

+39
-0
lines changed

test/APINotes/Inputs/custom-frameworks/APINotesFrameworkTest.framework/Headers/APINotesFrameworkTest.apinotes

+12
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,18 @@ Classes:
2020
- Name: accessorsOnlyForClassExceptInVersion3
2121
PropertyKind: Class
2222
SwiftImportAsAccessors: true
23+
- Name: accessorsOnlyWithNewType
24+
PropertyKind: Instance
25+
SwiftImportAsAccessors: true
26+
Type: '__kindof Base * _Nonnull'
27+
- Name: TypeChanges
28+
Methods:
29+
- Selector: 'methodWithA:'
30+
MethodKind: Instance
31+
ResultType: 'A * _Nonnull'
32+
Parameters:
33+
- Position: 0
34+
Type: 'A * _Nullable'
2335
Functions:
2436
- Name: jumpToLocation
2537
SwiftName: 'jumpTo(x:y:z:)'

test/APINotes/Inputs/custom-frameworks/APINotesFrameworkTest.framework/Headers/APINotesFrameworkTest.h

+10
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,15 @@ void jumpToLocation(double x, double y, double z);
33
void acceptDoublePointer(double* _Nonnull ptr) __attribute__((swift_name("accept(_:)")));
44

55
#ifdef __OBJC__
6+
7+
__attribute__((objc_root_class))
8+
@interface A
9+
@end
10+
11+
__attribute__((objc_root_class))
12+
@interface TypeChanges
13+
-(nonnull id)methodWithA:(nonnull id)a;
14+
@end
15+
616
#import <APINotesFrameworkTest/Properties.h>
717
#endif

test/APINotes/Inputs/custom-frameworks/APINotesFrameworkTest.framework/Headers/Properties.h

+4
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,8 @@ __attribute__((objc_root_class))
2323
@property (nonatomic, readwrite, retain, class) id accessorsOnlyForClass;
2424
@end
2525

26+
@interface TestProperties (Retyped)
27+
@property (nonatomic, readwrite, retain) id accessorsOnlyWithNewType;
28+
@end
29+
2630
#pragma clang assume_nonnull end

test/APINotes/properties.swift

+5
Original file line numberDiff line numberDiff line change
@@ -40,3 +40,8 @@
4040
// CHECK-BOTH-DAG: class func accessorsOnlyForClass() -> Any
4141
// CHECK-BOTH-DAG: class func setAccessorsOnlyForClass(_ accessorsOnlyForClass: Any)
4242
// CHECK-BOTH: {{^}$}}
43+
44+
// CHECK-BOTH-DAG: func accessorsOnlyWithNewType() -> Base
45+
// CHECK-BOTH-DAG: func setAccessorsOnlyWithNewType(_ accessorsOnlyWithNewType: Base)
46+
47+
// CHECK-BOTH: {{^}$}}

test/APINotes/type_changes.swift

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
// RUN: %target-parse-verify-swift -I %S/Inputs/custom-modules -F %S/Inputs/custom-frameworks
2+
import APINotesTest
3+
import APINotesFrameworkTest
4+
5+
func testChangedTypes(tc: TypeChanges, a: A, i: Int) {
6+
_ = tc.method(with: i) // expected-error{{cannot convert value of type 'Int' to expected argument type 'A?'}}
7+
let _: Int = tc.method(with: a) // expected-error{{cannot convert value of type 'A' to specified type 'Int'}}
8+
}

0 commit comments

Comments
 (0)