blob: 702e61b1df496e2b6132210d1b57613463187aaf [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: 8.7.2-1-s
description: >
Strict Mode - ReferenceError is thrown if LeftHandSide evaluates
to an unresolvable Reference
flags: [onlyStrict]
---*/
assert.throws(ReferenceError, function() {
eval("_8_7_2_1 = 11;");
});