23 lines · plain
1#import "lib.h"2#include <stdio.h>3 4@interface Bar : Foo5@property int barProp;6- (id)init;7@end8 9@implementation Bar10 11- (id)init {12 self = [super init];13 self.barProp = 15;14 return self;15}16@end17 18int main() {19 Bar *bar = [Bar new];20 puts("break here");21 return 0;22}23