reflect: canonicalize types returned by StructOf() and friends
[official-gcc.git] / gcc / testsuite / obj-c++.dg / class-extension-3.mm
blob69e5705396989b4a739eed05f065f61c86664777
1 /* Contributed by Nicola Pero <nicola.pero@meta-innovation.com>, December 2010.  */
2 /* { dg-do compile } */
4 /* This test tests warnings on class extensions.  */
6 #include <objc/objc.h>
8 @interface MyObject
10   Class isa;
11   int count;
13 - (int) test;        /* { dg-message "previous declaration" } */
14 @property int count; /* { dg-message "originally specified here" } */
15 @end
17 @interface MyObject ()
18 - (void) test; /* { dg-error "duplicate declaration of method .-test." } */
19 @end
21 @interface MyObject ()
22 @end
24 @interface MyObject ()
25 @property int count; /* { dg-error "redeclaration of property .count." } */
26 @end