reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
    1
    2
    3
    4
    5
    6
    7
    8
    9
   10
#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;
}