2014-07-11 Edward Smith-Rowland <3dw4rd@verizon.net>
[official-gcc.git] / gcc / testsuite / obj-c++.dg / lookup-2.mm
blob6b969249e06841674218567079c83bf3412b0867
1 /* { dg-do run } */
2 /* { dg-xfail-run-if "Needs OBJC2 ABI" { *-*-darwin* && { lp64 && { ! objc2 } } } { "-fnext-runtime" } { "" } } */
3 #include "../objc-obj-c++-shared/TestsuiteObject.m"
4 #include <stdlib.h>
6 class MyWidget {
7  public:
8   int a;
9   MyWidget(void) { a = 17; }
12 MyWidget gWidget;
14 @protocol MyProto
15 - (MyWidget *)widget;
16 @end
18 @interface Foo: TestsuiteObject
19 @end
21 @interface Bar: Foo <MyProto>
22 @end
24 @interface Container: TestsuiteObject
25 + (MyWidget *)elementForView:(Foo *)view;
26 @end
28 @implementation Foo
29 @end
31 @implementation Bar
32 - (MyWidget *)widget {
33   return &gWidget;
35 @end
37 @implementation Container
38 + (MyWidget *)elementForView:(Foo *)view
40     MyWidget *widget = 0;
41     if (class_conformsToProtocol (object_getClass (view),
42                                   @protocol(MyProto))) {
43         widget = [(Foo <MyProto> *)view widget];
44     }
45     return widget;
47 @end
49 int main(void) {
50   id view = [Bar new];
51   MyWidget *w = [Container elementForView: view];
53   if (!w || w->a != 17)
54     abort ();
56   return 0;