PR target/83368
[official-gcc.git] / gcc / testsuite / obj-c++.dg / attributes / class-attribute-3.mm
blobf96500de4dc15b371b084d93610dca6e0e882cc9
1 /* Contributed by Nicola Pero <nicola.pero@meta-innovation.com>, December 2010.  */
2 /* { dg-do compile } */
4 /* Test that you get a warning when an unknown class attribute is ignored.  */
6 #include <objc/objc.h>
8 __attribute__ ((unknown_attribute))
9 @interface MyClass /* { dg-warning "ignored" } */
11   Class isa;
13 + (id) new;
14 @end