blob: c6ca68ad0c88544a7617518766b53fbb38cb6f88 [file] [log] [blame]
keith_miller@apple.combcc77f22016-07-15 06:03:25 +00001// Copyright 2009 the Sputnik authors. All rights reserved.
2// This code is governed by the BSD license found in the LICENSE file.
3
4/*---
5info: >
6 TryStatement: "try Block Catch" or "try Block Finally" or "try Block
7 Catch Finally"
8es5id: 12.14_A16_T9
9description: Checking if execution of "catch(){} finally{}" fails
10negative: SyntaxError
11---*/
12
13// CHECK#1
14catch(){}
15finally{}