summaryrefslogtreecommitdiff
path: root/testsuite/tests/ffi/should_compile/T22034_c.c
blob: e70b5a978ff6ecd1a95d89efc45ae83d07cbc7f8 (plain)
1
2
3
4
5
6
7
8
9
#include <stdlib.h>

const int * foo() {
    int *x = malloc(sizeof(int));
    *x = 42;
    return x;
}

const int *bar = 0;