mirror of https://github.com/tc39/test262.git
18 lines
417 B
JavaScript
18 lines
417 B
JavaScript
// Copyright (C) 2015 the V8 project authors. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
/*---
|
|
es6id: 13.3.3
|
|
description: >
|
|
Destructuring values on default parameters.
|
|
---*/
|
|
|
|
function fn([a, b] = [1, 2], {c: c} = {c: 3}) {
|
|
return [a, b, c];
|
|
}
|
|
|
|
var results = fn();
|
|
|
|
assert.sameValue(results[0], 1);
|
|
assert.sameValue(results[1], 2);
|
|
assert.sameValue(results[2], 3);
|