blob: 9e80580796a0d74f9f2d473c6128e833ac9fdc9a [file] [log] [blame]
Eric Christopherd1ab1a22011-10-06 00:31:18 +00001// RUN: %clang_cc1 -triple x86_64-apple-darwin11 -g -S %s -o -
Stephen Hines651f13c2014-04-23 16:59:28 -07002// REQUIRES: x86-registered-target
Benjamin Kramerea104cd2012-09-18 13:34:01 +00003
Eric Christopherd1ab1a22011-10-06 00:31:18 +00004@class Bar;
5@interface Foo
6@property (strong, nonatomic) Bar *window;
7@end
8
9@interface Foo__ : Foo
10@end
11@implementation Foo__
12@end
13
14@implementation Foo
15@synthesize window = _window;
16@end
17