Home | History | Annotate | Download | only in P_cxx
      1 #include "cxx.h"
      2 
      3 void foo() {}
      4 void foo(int a) {}
      5 int bar;
      6 
      7 namespace {
      8   void foo() {}
      9   void foo(double a) {}
     10   int bar;
     11 }
     12 
     13 namespace kerker {
     14   void foo() {}
     15   void foo(char* a) {}
     16   int bar;
     17 }
     18 
     19 extern "C" void c_interface() {
     20   kerker::foo();
     21 }
     22