aboutsummaryrefslogtreecommitdiffstats
path: root/meson/test cases/common/133 c cpp and asm/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'meson/test cases/common/133 c cpp and asm/main.cpp')
-rw-r--r--meson/test cases/common/133 c cpp and asm/main.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/meson/test cases/common/133 c cpp and asm/main.cpp b/meson/test cases/common/133 c cpp and asm/main.cpp
new file mode 100644
index 000000000..debb97ac6
--- /dev/null
+++ b/meson/test cases/common/133 c cpp and asm/main.cpp
@@ -0,0 +1,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();
+}