blob: ffcfbde08371d86c460063ca455b7c546a6c84b9 [file] [log] [blame]
// RUN: %target-swift-frontend(mock-sdk: %clang-importer-sdk) -typecheck %s -verify
// REQUIRES: objc_interop
import ObjectiveC
func instanceMethod(_ b: B) {
b.method(1, 2.5) // expected-error {{argument labels '(_:, _:)' do not match any available overloads}}
// expected-note @-1 {{overloads for 'method' exist with these partially matching parameter lists: (Int32, onExtB: Double), (Int32, with: Float), (Int32, withFloat: Float), (Int32, onExtA: Double), (Int32, onCat1: Double), (Int32, with: Double), (Int32, withDouble: Double)}}
}