Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.old-deja / g++.ns / koenig5.C
blobd84fc8dbf41f250f6f380ba4f405fb72c4830b0b
1 // { dg-do assemble  }
2 // To find function pointers in Koenig lookup is ok as long as we only find one.
3 namespace A{
4   void foo();             
5   struct X{};
6   void (*bar)(X*)=0;
8 using A::X;
10 void (*foo)(X*)=0;        
12 void g()
14   foo(new X);            // ok -- DR 218 says that we find the global
15                          // foo variable first, and therefore do not
16                          // perform argument-dependent lookup.
17   bar(new X);            // ok