blob: d4f19cf9ff66530c997f9349927cf068945a5ff2 [file] [log] [blame]
// Copyright (C) 2014 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
es6id: 14.5.14
description: >
In a class, computed property names for static
generators that are named "prototype" throw a TypeError
---*/
assert.throws(TypeError, function() {
class C {
static *['prototype']() {}
}
});