1 /* Test basic nested C function functionality within ObjC
3 /* Contributed by Ziemowit Laski <zlaski@apple.com>. */
6 #import "../../objc-obj-c++-shared/TestsuiteObject.m"
9 int bappy (int (*blargh) (int a, int b, int c))
11 return blargh (4, 7, 2) + 3;
14 @interface Foo: TestsuiteObject
21 int blargh (int a, int b, int c)
25 return bappy (blargh);