summaryrefslogtreecommitdiffstats
path: root/test/Rewriter/objc-encoding-bug-1.m
blob: d2099883b1de6ffdb2e8d7a98e422a1f3718de2f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// RUN: clang-cc -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

OpenPOWER on IntegriCloud