Clean up some minor white space issues in trans-decl.c and trans-expr.c
[official-gcc.git] / gcc / testsuite / g++.dg / lookup / koenig13.C
blob625a181f6214a7a529439e5a3c59a92dc518ed36
1 // PR c++/42687
2 // DR 705
4 namespace N
6     struct S { };
7     void f(const S &) { }
10 void f(const N::S &) { }
12 int main()
14     N::S v;
15     (f)(v); // no ambiguity: ADL is prevented with (), only ::f is considered