mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
Normally we wouldn't need this because we do not allow overloading by parameter optionality. In this case, though, we import two Objective-C methods that end up getting renamed to the same name in Swift, one of which has a nullability annotation and the other of which doesn't. Before IUOs were removed from the type system, we would have failed a subtype test when ranking overloads, but now that subtype test passes because we're comparing two optionals of the same type. So the change here is to compare the optionality of the parameters and reject cases where we are testing whether a plain optional is a subtype of something declared to be an IUO. Fixes rdar://problem/38719575.
12 lines
492 B
Swift
12 lines
492 B
Swift
// RUN: %empty-directory(%t)
|
|
// RUN: %build-clang-importer-objc-overlays
|
|
// RUN: %target-swift-frontend(mock-sdk: %clang-importer-sdk-nosource -I %t) -import-objc-header %S/Inputs/disambiguate_iuo_param.h %s -emit-ir | %FileCheck %s
|
|
// -module-name objc_ir -I %S/Inputs/custom-modules -emit-ir -g -o - -primary-file %s | %FileCheck %s
|
|
|
|
// REQUIRES: objc_interop
|
|
|
|
// CHECK: define {{.*}} @main
|
|
// CHECK: load {{.*}}, {{.*}}@"\01L_selector(isEqualToObject:)"
|
|
let c = Obj()
|
|
_ = c.isEqual(to: c)
|