opnsense-src/test/Rewriter/objc-encoding-bug-1.m

20 lines
350 B
Mathematica
Raw Normal View History

2010-01-01 05:34:51 -05:00
// RUN: %clang_cc1 -rewrite-objc %s -o -
2009-06-02 13:58:47 -04:00
typedef struct NSMethodFrameArgInfo {
struct NSMethodFrameArgInfo *subInfo;
struct NSMethodFrameArgInfo *an;
} NSMethodFrameArgInfo;
@interface NSMethodSignature
- (NSMethodFrameArgInfo *)_argInfo;
@end
@implementation NSMethodSignature
- (NSMethodFrameArgInfo *)_argInfo{
return 0;
}
@end