TypeScript/tests/cases/conformance/es6/computedProperties/computedPropertyNames14_ES6.ts

10 lines
172 B
TypeScript

// @target: es6
var b: boolean;
class C {
[b]() {}
static [true]() { }
[[]]() { }
static [{}]() { }
[undefined]() { }
static [null]() { }
}