blob: 8d7193304e545535b40f5d876351e2f813e9af68 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#include <Foundation/Foundation.h>
@interface MyClass : NSObject
@property int m;
@end
@implementation MyClass {
}
@end
int main() {
MyClass *m = [[MyClass alloc] init];
m.m;
return 0; // break here
}
|