summaryrefslogtreecommitdiffstats
path: root/test cases/common/133 c cpp and asm/main.cpp
blob: debb97ac61d20297819431bbf39bd60943ae4441 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <iostream>

extern "C" {
  int get_retval(void);
  int get_cval(void);
}

int main(void) {
  std::cout << "C++ seems to be working." << std::endl;
  return get_retval();
}