blob: d2e60f99e51c7d12c37d98e7d3b320af2e8e752c [file] [log] [blame]
Ben Murdochc5610432016-08-08 18:44:38 +01001// Copyright 2016 the V8 project authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5var x = {a:1, b:2};
6var y = {a:1, b:2.5};
7Object.assign(x, x);