(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
lookup/
koenig3.C
extern "C" void abort ();

struct S {
};
void f(S, int) { abort(); }
void f(S, double) {}

S s;

int main() {
  extern void f(S, int);
  f(s, 3.0);
}