mirror of https://github.com/tc39/test262.git
18 lines
365 B
Plaintext
18 lines
365 B
Plaintext
// Copyright (C) 2015 the V8 project authors. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/*---
|
|
desc: >
|
|
An ArrayAssignmentPattern without an AssignmentElementList requires
|
|
iterable values and throws for `undefined`.
|
|
template: error
|
|
es6id: 12.14.5.2
|
|
---*/
|
|
|
|
//- error
|
|
TypeError
|
|
//- elems
|
|
[]
|
|
//- vals
|
|
undefined
|