Sean Callanan 6d1c372c04 Added a testcase verifying that forward declarations
of Objective-C classes in header files are correctly
resolved in the final type.

llvm-svn: 151790
2012-03-01 02:06:31 +00:00

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;
}