1namespace NS {2struct X {};3void f(X) {}4void operator+(X, X) {}5} // namespace NS6void f() {7 NS::X x;8 f(x);9 x + x;10}11