URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [objc.dg/] [attributes/] [class-attribute-3.m] - Rev 754
Go to most recent revision | Compare with Previous | Blame | View Log
/* Contributed by Nicola Pero <nicola.pero@meta-innovation.com>, December 2010. */ /* { dg-do compile } */ /* Test that you get a warning when an unknown class attribute is ignored. */ #include <objc/objc.h> __attribute__ ((unknown_attribute)) @interface MyClass { /* { dg-warning "ignored" } */ Class isa; } + (id) new; @end
Go to most recent revision | Compare with Previous | Blame | View Log