summaryrefslogtreecommitdiff
path: root/test/built-ins/Object/assign/Target-Undefined.js
blob: 03189f177946ba6f21385db834c3ec0674794507 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright 2015 Microsoft Corporation. All rights reserved.
// This code is governed by the license found in the LICENSE file.

/*---
description: Test the first argument(target) of Object.Assign(target,...sources),
             if target is Undefined,Should Throw a TypeError exception.
es6id:  19.1.2.1.1
---*/

assert.throws(TypeError, function() {
  Object.assign(undefined, {
    a: 1
  });
});