summaryrefslogtreecommitdiff
path: root/tests/P_cxx/cxx.cpp
blob: 197e91b81b7b53dd3e047df9e872907d5f208aa7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#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();
}