mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
These are tests that fail in the next commit without this flag. This does not add -verify-ignore-unrelated to all tests with -verify, only the ones that would fail without it. This is NFC since this flag is currently a no-op.
37 lines
1.8 KiB
Swift
37 lines
1.8 KiB
Swift
// RUN: %target-swift-frontend(mock-sdk: %clang-importer-sdk -I %S/Inputs/custom-modules -F %S/Inputs/frameworks) -import-underlying-module -import-objc-header %S/Inputs/objc_init_redundant_bridging.h -emit-sil %s -verify -verify-ignore-unrelated -swift-version 5 -enable-library-evolution
|
|
// RUN: not %target-swift-frontend(mock-sdk: %clang-importer-sdk -I %S/Inputs/custom-modules -F %S/Inputs/frameworks) -import-underlying-module -import-objc-header %S/Inputs/objc_init_redundant_bridging.h -emit-sil %s -swift-version 5 -enable-library-evolution > %t.log 2>&1
|
|
// RUN: %FileCheck %s < %t.log
|
|
|
|
// REQUIRES: objc_interop
|
|
|
|
import Foundation
|
|
@_implementationOnly import objc_init_redundant_Private
|
|
|
|
// rdar://problem/17687082
|
|
extension NSObject {
|
|
@objc convenience init() { self.init() } // expected-error{{initializer 'init()' with Objective-C selector 'init' conflicts with previous declaration with the same Objective-C selector}}
|
|
// CHECK: objc_init_redundant.swift:[[@LINE-1]]:21: error: initializer 'init()' with Objective-C selector 'init' conflicts
|
|
// CHECK: ObjectiveC.NSObject:{{.*}}note: 'init()' previously declared here
|
|
}
|
|
|
|
extension NSObject {
|
|
@objc(class) func foo() { } // expected-error{{method 'foo()' with Objective-C selector 'class' conflicts with method 'class()' with the same Objective-C selector}}
|
|
// CHECK: objc_init_redundant.swift:[[@LINE-1]]:21: error: method 'foo()' with Objective-C selector 'class' conflicts
|
|
// CHECK: ObjectiveC.NSObjectProtocol:{{.*}}note: method 'class()' declared here
|
|
}
|
|
|
|
// rdar://96470068 - Don't want conflict diagnostics in the same module
|
|
extension MyObject {
|
|
@objc func implementedInSwift() {}
|
|
}
|
|
|
|
// ...or the bridging header
|
|
extension MyBridgedObject {
|
|
@objc func implementedInSwift() {}
|
|
}
|
|
|
|
// ...or the private module
|
|
extension MyPrivateObject {
|
|
@objc func implementedInSwift() {}
|
|
}
|