Files @ 28005c6bf69b
Branch filter:

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

Max Henger
Merge branch 'feat-select-statement' into 'master'

feat: select statement

See merge request nl-cwi-csy/reowolf!1
1
2
3
4
5
6
7
// It fails, so that is nice, but it fails due to the wrong reasons
// My bad: C-ism of declarations on top
bool some_function() {
    result_c = false;
    bool result_c = true;
    return result_c;
}