]> git.saurik.com Git - apple/ld64.git/blob - unit-tests/test-cases/archive-ObjC-unexported/bar.m
ld64-123.2.tar.gz
[apple/ld64.git] / unit-tests / test-cases / archive-ObjC-unexported / bar.m
1 #include <Foundation/Foundation.h>
2
3 @interface Foobar : NSObject
4 @end
5
6 void other()
7 {
8 [[Foobar alloc] init];
9 }
10
11 void bar()
12 {
13 }
14