xref: /llvm-project/lldb/test/API/lang/objc/real-definition/Foo.h (revision 99451b4453688a94c6014cac233d371ab4cc342d)
1 #import <Foundation/Foundation.h>
2 
3 #import "Bar.h"
4 
5 @interface Foo : NSObject {
6     Bar *_bar;
7 }
8 
9 - (NSString *)description;
10 
11 @end
12