blob: 15627d6aaedac1906f19434d94af3c38233c3b84 [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-3-a-1gs
description: >
Strict Mode - ReferenceError is thrown if LeftHandSide evaluate to
an unresolvable Reference
flags: [onlyStrict]
---*/
assert.throws(ReferenceError, function() {
b = 11;
});