brintos

brintos / llvm-project-archived public Read only

0
0
Text · 210 B · 8d71933 Raw
16 lines · plain
1#include <Foundation/Foundation.h>2 3@interface MyClass : NSObject4@property int m;5@end6 7@implementation MyClass {8}9@end10 11int main() {12  MyClass *m = [[MyClass alloc] init];13  m.m;14  return 0; // break here15}16