xref: /llvm-project/lldb/test/API/lang/objc/objc-po-hint/main.m (revision 5f45a87bf029cc4b9815f5f819906198b07e00d1)
1#import <Foundation/Foundation.h>
2
3@interface Foo : NSObject {}
4
5-(id) init;
6
7@end
8
9@implementation Foo
10
11-(id) init
12{
13    return self = [super init];
14}
15@end
16
17int main()
18{
19    Foo *foo = [Foo new];
20    NSLog(@"a"); // Set breakpoint here.
21    return 0;
22}
23