summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/language/expressions/object/method-definition/generator-invoke-ctor.js
blob: 727b8337c32fe72b84148cfe95938357d3ecd0aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
description: >
    Generator functions declared as methods cannot be used as constructors.
es6id: 14.4.13
features: [generators]
---*/

var method = { *method() {} }.method;

assert.throws(TypeError, function() {
  var instance = new method();
});

reportCompare(0, 0);