brintos

brintos / llvm-project-archived public Read only

0
0
Text · 254 B · e22f63d Raw
23 lines · plain
1#import <Foundation/Foundation.h>2 3@interface Foo : NSObject {}4 5-(id) init;6 7@end8 9@implementation Foo10 11-(id) init12{13    return self = [super init];14}15@end16 17int main()18{19    Foo *foo = [Foo new];20    NSLog(@"a"); // Set breakpoint here.21    return 0;22}23