1 // RUN: %clang_cc1 -fsyntax-only -verify %s 2 3 namespace A { 4 struct B { }; 5 void operator+(B,B); 6 } 7 8 using A::operator+; 9