summaryrefslogtreecommitdiff
path: root/tests/projects/objc/modulemap/src/hello.m
diff options
context:
space:
mode:
Diffstat (limited to 'tests/projects/objc/modulemap/src/hello.m')
-rw-r--r--tests/projects/objc/modulemap/src/hello.m10
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/projects/objc/modulemap/src/hello.m b/tests/projects/objc/modulemap/src/hello.m
new file mode 100644
index 000000000..b22f844f2
--- /dev/null
+++ b/tests/projects/objc/modulemap/src/hello.m
@@ -0,0 +1,10 @@
+#import "hello.h"
+
+@implementation Hello
+
++ (void)say:(NSString*)s
+{
+ NSLog(@"%@\n", s);
+}
+
+@end