bolt/deps/llvm-18.1.8/lldb/test/API/lang/objc/warnings-in-expr-parser/main.m

16 lines
210 B
Mathematica
Raw Normal View History

2025-02-14 19:21:04 +01:00
#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
}