PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / objc.dg / class-extension-4.m
blob692a0fcbd0a828f8491793b9e73a07c108d91935
1 /* Contributed by Nicola Pero <nicola.pero@meta-innovation.com>, December 2010.  */
2 /* { dg-do compile } */
4 /* This test tests you can not declare a class extension after the class @implementation.  */
6 #include <objc/objc.h>
8 @interface MyObject
10   Class isa;
12 @end
14 @implementation MyObject
15 @end
17 @interface MyObject ()
18 - (void) test; /* { dg-error "class extension for class .MyObject. declared after its ..implementation." } */
19 @end