of Objective-C classes in header files are correctly resolved in the final type. llvm-svn: 151790
15 lines
277 B
Objective-C
15 lines
277 B
Objective-C
#import <Foundation/Foundation.h>
|
|
#import "Container.h"
|
|
|
|
int main(int argc, const char * argv[])
|
|
{
|
|
|
|
@autoreleasepool {
|
|
Container *j = [[Container alloc] init];
|
|
|
|
printf("member value = %p", [j getMember]); // Set breakpoint 0 here.
|
|
}
|
|
return 0;
|
|
}
|
|
|