1#import <objc/NSObject.h>
2#import "myclass.h"
3
4int main() {
5  id object = [MyClass new];
6  return 0; // break here
7}
8