test file for dead code with exception handlers

This commit is contained in:
Julian Dolby 2013-04-11 08:26:48 -04:00
parent 1cc5e5ce9c
commit b90583f4fd
1 changed files with 7 additions and 0 deletions

View File

@ -0,0 +1,7 @@
(function() {
return;
try {
x();
} catch (e) {
}
})();