summaryrefslogtreecommitdiff
path: root/testsuite/tests/ffi/should_compile/T22034_c.c
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/tests/ffi/should_compile/T22034_c.c')
-rw-r--r--testsuite/tests/ffi/should_compile/T22034_c.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/testsuite/tests/ffi/should_compile/T22034_c.c b/testsuite/tests/ffi/should_compile/T22034_c.c
deleted file mode 100644
index e70b5a978f..0000000000
--- a/testsuite/tests/ffi/should_compile/T22034_c.c
+++ /dev/null
@@ -1,9 +0,0 @@
-#include <stdlib.h>
-
-const int * foo() {
- int *x = malloc(sizeof(int));
- *x = 42;
- return x;
-}
-
-const int *bar = 0;