blob: c923f7864b154562d1e12af4dd30d7a23fecb87f [file] [log] [blame]
Steve Naroffdd79d6f2008-03-12 02:07:40 +00001// RUN: clang -rewrite-test %s
Fariborz Jahanian248db262008-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