summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/baseline/bug1602390.js
blob: 365c13955a91e35402ed56ccd89b7193af87d4f7 (plain)
1
2
3
4
5
6
7
// |jit-test| --ion-osr=off; error:InternalError
function f() {
    while (true) {
        var r = f();
    }
}
f();