aboutsummaryrefslogtreecommitdiff
path: root/compiler/tests/parser/statement_return.bad
blob: 37a2155a92d72b6c8518608689c7a0dcf8b730ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12

int f()
{
    /* ERRORS */
    return 1+;
    return +;
    return return;
    return while;
    return {};

    return 0;
}