Index: clang/test/CXX/drs/dr4xx.cpp =================================================================== --- clang/test/CXX/drs/dr4xx.cpp +++ clang/test/CXX/drs/dr4xx.cpp @@ -315,6 +315,32 @@ } } +namespace dr418 { // dr418: yes +namespace example1 { +void f1(int, int = 0); +void f1(int = 0, int); + +void g() { f1(); } +} // namespace example1 + +namespace example2 { +namespace A { +void f2(int); // #dr418-f3-decl +} +namespace B { +using A::f2; +} +namespace A { +void f2(int = 3); +} +void g2() { + using B::f2; + f2(); // expected-error {{no matching function}} + // expected-note@#dr418-f3-decl {{requires 1 argument}} +} +} // namespace example2 +} // namespace dr418 + namespace dr420 { // dr420: yes template struct ptr { T *operator->() const; Index: clang/www/cxx_dr_status.html =================================================================== --- clang/www/cxx_dr_status.html +++ clang/www/cxx_dr_status.html @@ -2547,7 +2547,7 @@ 418 CD6 Imperfect wording on error on multiple default arguments on a called function - Unknown + Yes 419