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