blob: 92b7b071008a5c0f93e74dd4c99f6035fe6836e3 [file] [log] [blame]
// Copyright (C) 2015 André Bargull. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
description: >
Generator statements cannot be used as constructors.
es6id: 14.4
features: [generators]
---*/
function* g(){}
assert.throws(TypeError, function() {
var instance = new g();
});