summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/language/destructuring/binding/initialization-requires-object-coercible-undefined.js
blob: b9f16e78251f9740a42c235c3353da875c419e80 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// 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.5
description: >
  Cannot convert undefined argument value to object
info: |
  13.3.3.5 Runtime Semantics: BindingInitialization

  BindingPattern : ObjectBindingPattern

  1. Let valid be RequireObjectCoercible(value).
  2. ReturnIfAbrupt(valid).
features: [destructuring-binding]
---*/

function fn({}) {}

assert.throws(TypeError, function() {
  fn();
});

reportCompare(0, 0);