summaryrefslogtreecommitdiff
path: root/Tests/Simple/simple.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/Simple/simple.cxx')
-rw-r--r--Tests/Simple/simple.cxx11
1 files changed, 11 insertions, 0 deletions
diff --git a/Tests/Simple/simple.cxx b/Tests/Simple/simple.cxx
new file mode 100644
index 000000000..7bee7c074
--- /dev/null
+++ b/Tests/Simple/simple.cxx
@@ -0,0 +1,11 @@
+extern void simpleLib();
+extern "C" int FooBar();
+extern int bar();
+extern int bar1();
+int main ()
+{
+ FooBar();
+ bar();
+ simpleLib();
+ return 0;
+}