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