Files @ a5ae8bee6918
Branch filter:

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

mh
Slight extension of component store

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