aboutsummaryrefslogtreecommitdiffstats
path: root/tests/manual/v4/exceptions.1.js
blob: 5e4e152c196d299c258d998a492d55e01e4007c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

function foo(a) {
    x = 1
    if (a)
        throw 100;
    print("unreachable.1")
}

function bar(a) {
    print("reachable");
    foo(a)
    print("unreachable.2")
}

bar(1)
print("unreachable.3")