aboutsummaryrefslogtreecommitdiff
path: root/test/input/invalid/try.js
blob: e65a55ccb3083197439fe64828733e0e95cd8f5b (about) (plain)
1
2
3
4
5
6
7
8
function f() {
    try {} catch (eval) {}
}

function g() {
    "use strict";
    try {} catch (eval) {}
}