blob: 87c3d505945c36ec7a677ff819f333696db1e577 [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
getters that are named "prototype" throw a TypeError
---*/
assert.throws(TypeError, function() {
class C {
static get ['prototype']() {}
}
});