blob: 46eb90cd2b307e73612c28b40c35bc4e985a263a [file] [log] [blame]
Daniel Dunbar246e70f2008-09-26 04:48:09 +00001// RUN: clang -verify -fsyntax-only %s
2
3__attribute__((deprecated)) @class B; // expected-error {{prefix attribute must be followed by an interface or protocol}}
4
5__attribute__((deprecated)) @interface A @end
6__attribute__((deprecated)) @protocol P0;
7__attribute__((deprecated)) @protocol P1
8@end