blob: 797b5bbc03a4cd08fdd760746923433d7da7810c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// RUN: clang -cc1 -rewrite-objc %s -o -
typedef struct NSMethodFrameArgInfo {
struct NSMethodFrameArgInfo *subInfo;
struct NSMethodFrameArgInfo *an;
} NSMethodFrameArgInfo;
@interface NSMethodSignature
- (NSMethodFrameArgInfo *)_argInfo;
@end
@implementation NSMethodSignature
- (NSMethodFrameArgInfo *)_argInfo{
return 0;
}
@end
|