1*67e74705SXin Li// RUN: %clang_cc1 -triple x86_64-apple-darwin11 -debug-info-kind=limited -S %s -o - 2*67e74705SXin Li// REQUIRES: x86-registered-target 3*67e74705SXin Li 4*67e74705SXin Li@class Bar; 5*67e74705SXin Li@interface Foo 6*67e74705SXin Li@property (strong, nonatomic) Bar *window; 7*67e74705SXin Li@end 8*67e74705SXin Li 9*67e74705SXin Li@interface Foo__ : Foo 10*67e74705SXin Li@end 11*67e74705SXin Li@implementation Foo__ 12*67e74705SXin Li@end 13*67e74705SXin Li 14*67e74705SXin Li@implementation Foo 15*67e74705SXin Li@synthesize window = _window; 16*67e74705SXin Li@end 17*67e74705SXin Li 18