Files @ f10d3e5b2bce
Branch filter:

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

mh
Remove debugging println's
#version 1
// My bad: C-ism of declarations on top

int call_me(int later) {
    return later;
}

int function() {
    int a = 2;
    int b = 3;

    int d = call_me(b); // succeeds, because of assignment
    call_me(b); // bare function call seems to work, unless we perform assignment afterwards

    int d = 5;

    return 2;
}