summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/language/types/reference/8.7.2-2-s.js
blob: 607bed0434a195d6d811c1bdfc88d0bc865389db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// 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-2-s
description: >
    ReferenceError isn't thrown if LeftHandSide evaluates to a resolvable
    Reference
---*/

        var b = 11;

assert.sameValue(b, 11, 'b');

reportCompare(0, 0);