blob: c5dedbe708e0ef77e7f19372fe0453a961dbd5c2 [file] [log] [blame]
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);
}