Do not warn with -Wuninitialized when the member is used in a sizeof or address-of...
[clang.git] / test / SemaObjC / stand-alone-implementation.m
blobc33b66a37bc3abba9b8f7a28b847d259d607a7ac
1 // RUN: %clang_cc1 -fsyntax-only -verify %s
2 // radar 7547942
3 // Allow injection of ivars into implementation's implicit class.
5 @implementation INTFSTANDALONE // expected-warning {{cannot find interface declaration for 'INTFSTANDALONE'}}
7   id IVAR1;
8   id IVAR2;
10 - (id) Meth { return IVAR1; }
11 @end