Do not warn with -Wuninitialized when the member is used in a sizeof or address-of...
[clang.git] / test / SemaObjC / protocol-expr-1.m
blobfe01d1d47a8d98c5242b30e92dbbc44d5624af51
1 // RUN: %clang_cc1 -fsyntax-only -verify %s
3 @protocol fproto;
5 @protocol p1 
6 @end
8 @class cl;
10 int main()
12         Protocol *proto = @protocol(p1);
13         Protocol *fproto = @protocol(fproto);