summaryrefslogtreecommitdiff
path: root/gcc/testsuite/objc/execute/nested-func-1.m
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/objc/execute/nested-func-1.m')
-rw-r--r--gcc/testsuite/objc/execute/nested-func-1.m36
1 files changed, 36 insertions, 0 deletions
diff --git a/gcc/testsuite/objc/execute/nested-func-1.m b/gcc/testsuite/objc/execute/nested-func-1.m
new file mode 100644
index 000000000..a4c9a5619
--- /dev/null
+++ b/gcc/testsuite/objc/execute/nested-func-1.m
@@ -0,0 +1,36 @@
+/* Test basic nested C function functionality within ObjC
+ methods. */
+/* Contributed by Ziemowit Laski <zlaski@apple.com>. */
+#include <stdio.h>
+#include <stdlib.h>
+#import "../../objc-obj-c++-shared/Object1.h"
+#include <objc/objc.h>
+
+int bappy (int (*blargh) (int a, int b, int c))
+{
+ return blargh (4, 7, 2) + 3;
+}
+
+@interface Foo: Object
++ (int)foo;
+@end
+
+@implementation Foo
++ (int)foo
+{
+ int blargh (int a, int b, int c)
+ {
+ return a * b + c;
+ }
+ return bappy (blargh);
+}
+@end
+
+int main ()
+{
+ int f = [Foo foo];
+ if (f != 33)
+ abort ();
+
+ return 0;
+}