OSDN Git Service

2011-01-08 Dominique d'Humieres <dominiq@lps.ens.fr>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / objc.dg / class-extension-4.m
1 /* Contributed by Nicola Pero <nicola.pero@meta-innovation.com>, December 2010.  */
2 /* { dg-do compile } */
3
4 /* This test tests you can not declare a class extension after the class @implementation.  */
5
6 #include <objc/objc.h>
7
8 @interface MyObject
9 {
10   Class isa;
11 }
12 @end
13
14 @implementation MyObject
15 @end
16
17 @interface MyObject ()
18 - (void) test; /* { dg-error "class extension for class .MyObject. declared after its ..implementation." } */
19 @end