Files @ 64ef56fc060f
Branch filter:

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

MH
WIP: Work on MPSC queue, pending bugfixes

Works in single threaded fashion, some issues in multithreaded
stresstest require fixing.

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