OSDN Git Service

In gcc/testsuite/:
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / objc.dg / invalid-type-1.m
1 /* Contributed by Nicola Pero <nicola.pero@meta-innovation.com>, November 2010.  */
2 /* { dg-do compile } */
3 #include <objc/objc.h>
4
5 typedef int Integer;
6
7 @class MyClass;
8
9 typedef MyClass AClass;
10
11 @protocol MyProtocol
12 - (void) method;
13 @end
14
15 Class <MyProtocol> class_object; /* This is fine.  */
16
17 id <MyProtocol> object; /* This is fine.  */
18
19 AClass <MyProtocol> *object1; /* This is fine.  */
20
21 Integer <MyProtocol> *object2; /* { dg-error "only Objective-C object types can be qualified with a protocol" } */
22
23 Integer <NonExistingProtocol> *object3; /* { dg-error "only Objective-C object types can be qualified with a protocol" } */
24 /* { dg-error "cannot find protocol" "" { target *-*-* } 23 } */