File tree 3 files changed +25
-0
lines changed
3 files changed +25
-0
lines changed Original file line number Diff line number Diff line change @@ -86,6 +86,8 @@ SwiftVersions:
86
86
SwiftImportAsAccessors: true
87
87
- Name: NewlyGenericSub
88
88
SwiftImportAsNonGeneric: true
89
+ - Name: RenamedGeneric
90
+ SwiftName: OldRenamedGeneric
89
91
Protocols:
90
92
- Name: ProtoWithVersionedUnavailableMember
91
93
Methods:
Original file line number Diff line number Diff line change 5
5
+ (Element)defaultElement ;
6
6
@end
7
7
8
+ @interface RenamedGeneric <Element: Base *> : Base
9
+ @end
10
+
8
11
#pragma clang assume_nonnull end
9
12
#endif // __OBJC__
Original file line number Diff line number Diff line change @@ -23,4 +23,24 @@ func testNonGeneric() {
23
23
// CHECK-DIAGS-4:[[@LINE-1]]:{{[0-9]+}}: error: cannot convert value of type 'Base' to specified type 'Int'
24
24
}
25
25
26
+ func testRenamedGeneric( ) {
27
+ // CHECK-DIAGS-3:[[@LINE+1]]:{{[0-9]+}}: error: 'RenamedGeneric' has been renamed to 'OldRenamedGeneric'
28
+ let _: OldRenamedGeneric < Base > = RenamedGeneric < Base > ( )
29
+ // FIXME-DIAGS-4:[[@LINE-1]]:{{[0-9]+}}: error: 'OldRenamedGeneric' has been renamed to 'RenamedGeneric'
30
+
31
+ // FIXME-DIAGS-3:[[@LINE+1]]:{{[0-9]+}}: error: 'RenamedGeneric' has been renamed to 'OldRenamedGeneric'
32
+ let _: RenamedGeneric < Base > = OldRenamedGeneric < Base > ( )
33
+ // CHECK-DIAGS-4:[[@LINE-1]]:{{[0-9]+}}: error: 'OldRenamedGeneric' has been renamed to 'RenamedGeneric'
34
+
35
+ class SwiftClass { }
36
+
37
+ // CHECK-DIAGS-3:[[@LINE+1]]:{{[0-9]+}}: error: 'OldRenamedGeneric' requires that 'SwiftClass' inherit from 'Base'
38
+ let _: OldRenamedGeneric < SwiftClass > = RenamedGeneric < SwiftClass > ( )
39
+ // CHECK-DIAGS-4:[[@LINE-1]]:{{[0-9]+}}: error: 'OldRenamedGeneric' requires that 'SwiftClass' inherit from 'Base'
40
+
41
+ // CHECK-DIAGS-3:[[@LINE+1]]:{{[0-9]+}}: error: 'RenamedGeneric' requires that 'SwiftClass' inherit from 'Base'
42
+ let _: RenamedGeneric < SwiftClass > = OldRenamedGeneric < SwiftClass > ( )
43
+ // CHECK-DIAGS-4:[[@LINE-1]]:{{[0-9]+}}: error: 'RenamedGeneric' requires that 'SwiftClass' inherit from 'Base'
44
+ }
45
+
26
46
let unrelatedDiagnostic : Int = nil
You can’t perform that action at this time.
0 commit comments