Files
babel/packages/babel-plugin-transform-block-scoping/test/fixtures/general/function-in-catch/input.js
2018-01-09 15:36:42 +01:00

8 lines
74 B
JavaScript

try {
foo();
} catch (x) {
function harmless(x) {
return x;
}
}