This commit was manufactured by cvs2svn to create branch
[official-gcc.git] / gcc / testsuite / g++.dg / lookup / koenig3.C
blobc5dedbe708e0ef77e7f19372fe0453a961dbd5c2
1 extern "C" void abort ();
3 struct S {
4 };
5 void f(S, int) { abort(); }
6 void f(S, double) {}
8 S s;
10 int main() {
11   extern void f(S, int);
12   f(s, 3.0);