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