Do not warn with -Wuninitialized when the member is used in a sizeof or address-of...
[clang.git] / test / Parser / prefix-attributes.m
blob399421fd728fd92c1ed094fb7f3dfd4923248b0e
1 // RUN: %clang_cc1 -verify -fsyntax-only %s
3 __attribute__((deprecated)) @class B; // expected-error {{prefix attribute must be followed by an interface or protocol}}
5 __attribute__((deprecated)) @interface A @end
6 __attribute__((deprecated)) @protocol P0;
7 __attribute__((deprecated)) @protocol P1
8 @end