Files @ 012b61623f5a
Branch filter:

Location: CSY/reowolf/testdata/parser/counterexamples/arity_checking.pdl

MH
WIP on fixing a lot of compiler errors

int funcy() {
    return 5;
}

int funcadelic(int a) {
    return  a;
}

int caller() {
    funcy();
    funcy(1);
    funcy(1, 2, 3);
    funcadelic();
    funcadelic(5);
    return funcadelic(1, 2, 3);
}