Do not warn with -Wuninitialized when the member is used in a sizeof or address-of...
[clang.git] / test / Rewriter / metadata-test-2.m
blob0fd0429b0b3135331282ac55b7aa36be5d924a23
1 // RUN: %clang_cc1 -rewrite-objc %s -o -
3 typedef struct _NSPoint {
4     float x;
5     float y;
6 } NSPoint;
8 @interface Intf
9 - (void) MyMeth : (NSPoint) Arg1;
10 @end
12 @implementation Intf
13 - (void) MyMeth : (NSPoint) Arg1{}
14 @end