1#include <Foundation/Foundation.h>
2
3@class IncompleteClass;
4
5@interface CompleteClass : NSObject
6@end
7
8@interface CompleteClassWithImpl : NSObject
9@end
10@implementation CompleteClassWithImpl
11@end
12
13IncompleteClass *incomplete = 0;
14CompleteClass *complete = 0;
15CompleteClassWithImpl *complete_impl = 0;
16
17int main() {
18 return 0; // break here
19}
20

source code of lldb/test/API/lang/objc/complete-type-check/main.m