brintos

brintos / llvm-project-archived public Read only

0
0
Text · 272 B · 7416e0a Raw
22 lines · plain
1#import <Foundation/Foundation.h>2 3@interface Bad : NSObject4@end5 6@implementation Bad {7  BOOL _lookHere;8}9 10- (NSString *)description {11  int *i = NULL;12  *i = 0;13  return @"surprise";14}15@end16 17int main() {18  Bad *bad = [Bad new];19  printf("break here\n");20  return 0;21}22