constructor-duplicate-2.js (304B)
1 // Copyright (C) 2014 the V8 project authors. All rights reserved. 2 // This code is governed by the BSD license found in the LICENSE file. 3 /*--- 4 es6id: 12.2.5 5 description: > 6 computed property names can be "constructor" 7 ---*/ 8 class C { 9 ['constructor']() {} 10 constructor() {} 11 } 12 13 reportCompare(0, 0);