1 | #import <objc/NSObject.h> |
---|---|
2 | #import "Container.h" |
3 | #import <stdio.h> |
4 | |
5 | int main(int argc, const char * argv[]) |
6 | { |
7 | |
8 | @autoreleasepool { |
9 | Container *j = [[Container alloc] init]; |
10 | |
11 | printf(format: "member value = %p", [j getMember]); // Set breakpoint 0 here. |
12 | } |
13 | return 0; |
14 | } |
15 | |
16 |