summaryrefslogtreecommitdiff
path: root/tests/projects/csharp/native_aot/src/app/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/projects/csharp/native_aot/src/app/main.cpp')
-rw-r--r--tests/projects/csharp/native_aot/src/app/main.cpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/projects/csharp/native_aot/src/app/main.cpp b/tests/projects/csharp/native_aot/src/app/main.cpp
new file mode 100644
index 000000000..070ad7de6
--- /dev/null
+++ b/tests/projects/csharp/native_aot/src/app/main.cpp
@@ -0,0 +1,12 @@
+#include <stdio.h>
+
+extern "C" {
+ int cs_add(int a, int b);
+ int cs_multiply(int a, int b);
+}
+
+int main() {
+ printf("cs_add(3,4)=%d\n", cs_add(3, 4));
+ printf("cs_multiply(5,6)=%d\n", cs_multiply(5, 6));
+ return 0;
+}