blob: 55e980493c29051a81944f235aa721aa54b49bc9 [file] [log] [blame]
John McCall260611a2012-06-20 06:18:46 +00001// RUN: %clang_cc1 -rewrite-objc -fobjc-runtime=macosx-fragile-10.5 %s -o -
Fariborz Jahanian7d6b46d2008-01-22 22:44:46 +00002
3typedef struct NSMethodFrameArgInfo {
4 struct NSMethodFrameArgInfo *subInfo;
5 struct NSMethodFrameArgInfo *an;
6} NSMethodFrameArgInfo;
7
8@interface NSMethodSignature
9- (NSMethodFrameArgInfo *)_argInfo;
10@end
11
12@implementation NSMethodSignature
13
14- (NSMethodFrameArgInfo *)_argInfo{
15 return 0;
16}
17
18@end
19