diff --git a/clang/lib/Sema/SemaOverload.cpp b/clang/lib/Sema/SemaOverload.cpp index f8f04defb1b63e017f8fb635c5e924620ae46b4e..30979b78d33a228a4105864cfb3d426a4d7a605f 100644 --- a/clang/lib/Sema/SemaOverload.cpp +++ b/clang/lib/Sema/SemaOverload.cpp @@ -3767,21 +3767,6 @@ Sema::AddConversionCandidate(CXXConversionDecl *Conversion, return; } - // Make sure that the actual object argument initialization will work, when - // it comes down to it. This takes into account the actual acting context. - if (ConversionContext->getCanonicalDecl() - != ActingContext->getCanonicalDecl()) { - ImplicitConversionSequence ObjectConvertICS - = TryObjectArgumentInitialization(From->getType(), Conversion, - ActingContext); - if (ObjectConvertICS.isBad()) { - Candidate.Viable = false; - Candidate.FailureKind = ovl_fail_bad_conversion; - Candidate.Conversions[0] = ObjectConvertICS; - return; - } - } - // We won't go through a user-define type conversion function to convert a // derived to base as such conversions are given Conversion Rank. They only // go through a copy constructor. 13.3.3.1.2-p4 [over.ics.user] diff --git a/clang/test/SemaCXX/conversion-function.cpp b/clang/test/SemaCXX/conversion-function.cpp index 3d544ae03cfe2f5c0cdf3ff466cbcb4c997f66f0..07281e16d3f3f0b6c7987e816474d4a88ac94f1f 100644 --- a/clang/test/SemaCXX/conversion-function.cpp +++ b/clang/test/SemaCXX/conversion-function.cpp @@ -306,4 +306,22 @@ namespace rdar8018274 { void test2(UeberDerived ud) { int i = ud; // expected-error{{ambiguous conversion from derived class 'rdar8018274::SuperDerived' to base class 'rdar8018274::Base'}} } + + struct Base2 { + operator int(); + }; + + struct Base3 { + operator int(); + }; + + struct Derived23 : Base2, Base3 { + using Base2::operator int; + }; + + struct ExtraDerived23 : Derived23 { }; + + void test3(ExtraDerived23 ed) { + int i = ed; + } }