* tree-loop-distribution.c (struct partition): New field recording
[official-gcc.git] / gcc / testsuite / obj-c++.dg / invalid-type-1.mm
blobcb2138fd38ebdd60db0cccb4c6d370b2e4e43508
1 /* Contributed by Nicola Pero <nicola.pero@meta-innovation.com>, November 2010.  */
2 /* { dg-do compile } */
3 #include <objc/objc.h>
5 typedef int Integer;
7 @class MyClass;
9 typedef MyClass AClass;
11 @protocol MyProtocol
12 - (void) method;
13 @end
15 Class <MyProtocol> class_object; /* This is fine.  */
17 id <MyProtocol> object; /* This is fine.  */
19 AClass <MyProtocol> *object1; /* This is fine.  */
21 Integer <MyProtocol> *object2; /* { dg-error ".Integer {aka int}. is not a template" } */
22 /* { dg-error ".MyProtocol. was not declared in this scope" "" { target *-*-* } .-1 } */
24 Integer <NonExistingProtocol> *object3; /* { dg-error ".Integer {aka int}. is not a template" } */
25 /* { dg-error ".NonExistingProtocol. was not declared in this scope" "" { target *-*-* } .-1 } */