blob: 7c2fdc21f8e173e1a46d500e857d816bfbfd2747 [file] [log] [blame]
John McCall5fb5df92012-06-20 06:18:46 +00001// RUN: %clang_cc1 -x objective-c -Wno-return-type -fblocks -fms-extensions -rewrite-objc -fobjc-runtime=macosx-fragile-10.5 %s -o %t-rw.cpp
Paul Robinsone9492f72016-12-09 01:20:40 +00002// RUN: %clang_cc1 -fsyntax-only -std=gnu++98 -fblocks -Wno-address-of-temporary -D"id=void*" -D"SEL=void*" -D"__declspec(X)=" %t-rw.cpp
Fariborz Jahanian1c2cb6d2010-01-11 22:48:40 +00003// rdar://6969189
4
5@class XX;
6@class YY, ZZ, QQ;
7@class ISyncClient, SMSession, ISyncManager, ISyncSession, SMDataclassInfo, SMClientInfo,
8 DMCConfiguration, DMCStatusEntry;
9
Fariborz Jahanian3a039e32011-08-27 20:50:59 +000010@interface QQ
11
12@end
13
14@interface SMDataclassInfo : QQ
15- (XX*) Meth;
16- (DMCStatusEntry*)Meth2;
17@end
18
19@implementation SMDataclassInfo
20- (XX*) Meth { return 0; }
21- (DMCStatusEntry*)Meth2 { return 0; }
22@end
23
24@interface YY
25{
26 ISyncClient *p1;
27 ISyncSession *p2;
28}
29@property (copy) ISyncClient *p1;
30@end
31
32@implementation YY
33@synthesize p1;
34@end
35