int test();

int test(int a, int b) {
    test(5);
    return a + b;
}

void main() {
    test(test());
    test(test(2, 4));
}

int test() {
    return 3;
}