2014-07-11 Edward Smith-Rowland <3dw4rd@verizon.net>
[official-gcc.git] / gcc / testsuite / obj-c++.dg / protocol-inheritance-2.mm
blobd769949451e0612cc34f802d8bd2bafd24dac360
1 /* Contributed by Nicola Pero <nicola.pero@meta-innovation.com>, November 2010.  */
2 /* { dg-do compile } */
4 #include <objc/objc.h>
6 /* Test standard warnings when a class conforms to a protocol but some
7    methods are implemented in the superclass.  Use -Wno-protocol to
8    turn these off.  */
10 @protocol MyProtocol
11 - (int)method;
12 @end
14 @protocol MyProtocol2
15 - (int)method2;
16 @end
18 /* The superclass implements the method required by the protocol.  */
19 @interface MyRootClass
21   Class isa;
23 - (int)method;
24 @end
26 @implementation MyRootClass
27 - (int)method
29   return 23;
31 @end
33 /* The subclass inherits the method (does not implement it directly)
34    and unless -Wno-protocol is used, we emit a warning.  */
35 @interface MySubClass : MyRootClass <MyProtocol>
36 @end
38 @implementation MySubClass
39 @end
41 /* { dg-warning "incomplete implementation of class .MySubClass." "" { target *-*-* } 39 } */
42 /* { dg-warning "method definition for .\\-method. not found" "" { target *-*-* } 39 } */
43 /* { dg-warning "class .MySubClass. does not fully implement the .MyProtocol. protocol" "" { target *-*-* } 39 } */
46 /* The subclass instead does not inherit the method method2 (and does
47    not implement it directly) so it does not conform to the
48    protocol MyProtocol2.  */
49 @interface MySubClass2 : MyRootClass <MyProtocol2>
50 @end
52 @implementation MySubClass2
53 @end /* Warnings here, below.  */
55 /* { dg-warning "incomplete implementation of class .MySubClass2." "" { target *-*-* } 53 } */
56 /* { dg-warning "method definition for .\\-method2. not found" "" { target *-*-* } 53 } */
57 /* { dg-warning "class .MySubClass2. does not fully implement the .MyProtocol2. protocol" "" { target *-*-* } 53 } */