Files @ 7d01f1245b7c
Branch filter:

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

mh
Everything compiles again, pending restructuring of shared runtime objects

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);
}