the containing class so that direct ivar access will work in the expression parser. <rdar://problem/9797999> llvm-svn: 167061
11 lines
194 B
Objective-C
11 lines
194 B
Objective-C
#import "ivars-in-blocks.h"
|
|
|
|
int
|
|
main (int argc, char **argv)
|
|
{
|
|
IAmBlocky *my_blocky = [[IAmBlocky alloc] init];
|
|
int blocky_value;
|
|
blocky_value = [my_blocky callABlock: 33];
|
|
return 0;
|
|
}
|