TypeScript/tests/baselines/reference/catchClauseWithBindingPattern1.js

12 lines
150 B
TypeScript
Raw Normal View History

2015-02-27 02:42:46 +01:00
//// [catchClauseWithBindingPattern1.ts]
try {
}
catch ({a}) {
}
//// [catchClauseWithBindingPattern1.js]
try {
}
catch (a = (void 0).a) {
}