@@ -25,7 +25,7 @@ var DeprecatedObjCInferenceTestSuite = TestSuite("DeprecatedObjCInferenceTestSui
25
25
26
26
class MyClass : NSObject {
27
27
// The line numbers of the next two methods are mentioned in the CHECK lines
28
- // below. Please keep them as 26 and 27 .
28
+ // below. Please keep them as 29 and 30 .
29
29
func foo( ) { }
30
30
class func bar( ) { }
31
31
}
@@ -45,15 +45,15 @@ DeprecatedObjCInferenceTestSuite.test("messagingObjCInference") {
45
45
// CHECK_CRASH: ---Begin
46
46
fputs ( " ---Begin \n " , stderr)
47
47
48
- // CHECK_WARNINGS: .swift:26 :3: implicit Objective-C entrypoint -[a.MyClass foo]
49
- // CHECK_CRASH: .swift:26 :3: implicit Objective-C entrypoint -[a.MyClass foo]
48
+ // CHECK_WARNINGS: .swift:29 :3: implicit Objective-C entrypoint -[a.MyClass foo]
49
+ // CHECK_CRASH: .swift:29 :3: implicit Objective-C entrypoint -[a.MyClass foo]
50
50
x. perform ( Selector ( fooSel) )
51
- // CHECK_WARNINGS-NOT: .swift:26 :3: implicit Objective-C entrypoint -[a.MyClass foo]
51
+ // CHECK_WARNINGS-NOT: .swift:29 :3: implicit Objective-C entrypoint -[a.MyClass foo]
52
52
x. perform ( Selector ( fooSel) )
53
53
54
- // CHECK_WARNINGS: .swift:27 :3: implicit Objective-C entrypoint +[a.MyClass bar]
54
+ // CHECK_WARNINGS: .swift:30 :3: implicit Objective-C entrypoint +[a.MyClass bar]
55
55
type ( of: x) . perform ( Selector ( barSel) )
56
- // CHECK_WARNINGS-NOT: .swift:27 :3: implicit Objective-C entrypoint +[a.MyClass bar]
56
+ // CHECK_WARNINGS-NOT: .swift:30 :3: implicit Objective-C entrypoint +[a.MyClass bar]
57
57
type ( of: x) . perform ( Selector ( barSel) )
58
58
59
59
// CHECK_NOTHING-NEXT: ---End
0 commit comments