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@end12