blob: b0b41000c48df7a8467f0de6464ecb1258b92bc1 [file] [log] [blame]
// Copyright (c) 2012 Ecma International. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
es5id: 12.1-2
description: >
12.1 - block '{ StatementListopt };' is not allowed:
try-catch-finally
---*/
assert.throws(SyntaxError, function() {
eval("try{};catch{};finally{}");
});