diff options
| author | Jakub Konka <kubkon@jakubkonka.com> | 2022-05-28 11:44:53 +0200 |
|---|---|---|
| committer | Jakub Konka <kubkon@jakubkonka.com> | 2022-06-20 17:59:17 +0200 |
| commit | 38edef35bfcba5789ea50adc7c76dec504079812 (patch) | |
| tree | 66d7f7279a005a36c201cadd474b66035f5c1a44 /test/link/objc/Foo.m | |
| parent | 74ed7c1f0998e9dd89aa3f3480fff845afd6b422 (diff) | |
| download | zig-38edef35bfcba5789ea50adc7c76dec504079812.tar.gz zig-38edef35bfcba5789ea50adc7c76dec504079812.zip | |
test: introduce link(er) tests - builds on standalone tests
Diffstat (limited to 'test/link/objc/Foo.m')
| -rw-r--r-- | test/link/objc/Foo.m | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/test/link/objc/Foo.m b/test/link/objc/Foo.m new file mode 100644 index 0000000000..6fc9b1edf0 --- /dev/null +++ b/test/link/objc/Foo.m @@ -0,0 +1,11 @@ +#import "Foo.h" + +@implementation Foo + +- (NSString *)name +{ + NSString *str = [[NSString alloc] initWithFormat:@"Zig"]; + return str; +} + +@end |
