aboutsummaryrefslogtreecommitdiffstats
path: root/meson/test cases/rust/15 polyglot sharedlib/addertest.c
diff options
context:
space:
mode:
Diffstat (limited to 'meson/test cases/rust/15 polyglot sharedlib/addertest.c')
-rw-r--r--meson/test cases/rust/15 polyglot sharedlib/addertest.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/meson/test cases/rust/15 polyglot sharedlib/addertest.c b/meson/test cases/rust/15 polyglot sharedlib/addertest.c
new file mode 100644
index 000000000..87e45b64f
--- /dev/null
+++ b/meson/test cases/rust/15 polyglot sharedlib/addertest.c
@@ -0,0 +1,12 @@
+#include<stdlib.h>
+#include<adder.h>
+
+int main(int argc, char **argv) {
+ adder *a = adder_create(3);
+ int result = adder_add(a, 4);
+ if(result != 7) {
+ return 1;
+ }
+ adder_destroy(a);
+ return 0;
+}