]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - test/Rewriter/objc-encoding-bug-1.m
Vendor import of clang release_38 branch r258549:
[FreeBSD/FreeBSD.git] / test / Rewriter / objc-encoding-bug-1.m
1 // RUN: %clang_cc1 -rewrite-objc -fobjc-runtime=macosx-fragile-10.5  %s -o -
2
3 typedef 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