summaryrefslogtreecommitdiff
path: root/tests/projects/objc/bundle/src/main.m
diff options
context:
space:
mode:
Diffstat (limited to 'tests/projects/objc/bundle/src/main.m')
-rw-r--r--tests/projects/objc/bundle/src/main.m11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/projects/objc/bundle/src/main.m b/tests/projects/objc/bundle/src/main.m
new file mode 100644
index 000000000..e3fa72dbf
--- /dev/null
+++ b/tests/projects/objc/bundle/src/main.m
@@ -0,0 +1,11 @@
+#import <Foundation/Foundation.h>
+#import <test/test.h>
+
+int main(int argc, char** argv)
+{
+ @autoreleasepool
+ {
+ NSLog(@"add(1, 2): %d", add(1, 2));
+ }
+ return 0;
+}