summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/ion/bug692213.js
blob: 2dc5dc4d7342a7dc63f4903481575b09677017fc (plain)
1
2
3
4
5
6
function X(n) {
    while ((n--)) {
        switch ( n ) { default : }   
    }
}
(X)(0);