[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / clang / test / Rewriter / objc-encoding-bug-1.m
blob55e980493c29051a81944f235aa721aa54b49bc9
1 // RUN: %clang_cc1 -rewrite-objc -fobjc-runtime=macosx-fragile-10.5  %s -o -
3 typedef struct NSMethodFrameArgInfo {
4     struct NSMethodFrameArgInfo *subInfo;
5     struct NSMethodFrameArgInfo *an;
6 } NSMethodFrameArgInfo;
8 @interface NSMethodSignature 
9 - (NSMethodFrameArgInfo *)_argInfo;
10 @end
12 @implementation NSMethodSignature
14 - (NSMethodFrameArgInfo *)_argInfo{
15     return 0;
18 @end