2015-05-18 20:15:08 +00:00
|
|
|
// Copyright 2015 the V8 project authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2015-11-18 23:29:36 +00:00
|
|
|
// Flags: --harmony-destructuring-bind
|
2015-05-18 20:15:08 +00:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
const { x : x, y : y } = { x : 1, y : 2 };
|
|
|
|
x++;
|