URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [objc.dg/] [class-extension-3.m] - Rev 708
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 } */ /* This test tests warnings on class extensions. */ #include <objc/objc.h> @interface MyObject { Class isa; int count; } - (int) test; /* { dg-message "previous declaration" } */ @property int count; /* { dg-message "originally specified here" } */ @end @interface MyObject () - (void) test; /* { dg-error "duplicate declaration of method .-test." } */ @end @interface MyObject () @end @interface MyObject () @property int count; /* { dg-error "redeclaration of property .count." } */ @end
Go to most recent revision | Compare with Previous | Blame | View Log