blob: 197e91b81b7b53dd3e047df9e872907d5f208aa7 [file] [log] [blame]
#include "cxx.h"
void foo() {}
void foo(int a) {}
int bar;
namespace {
void foo() {}
void foo(double a) {}
int bar;
}
namespace kerker {
void foo() {}
void foo(char* a) {}
int bar;
}
extern "C" void c_interface() {
kerker::foo();
}