Do not warn with -Wuninitialized when the member is used in a sizeof or address-of...
[clang.git] / test / Rewriter / objc-encoding-bug-1.m
blob5605b6627fac80dae517552e6c630c8eb0d36520
1 // RUN: %clang_cc1 -rewrite-objc %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