TypeScript/tests/cases/compiler/enumWithComputedMember.ts

6 lines
54 B
TypeScript
Raw Normal View History

enum A {
X = "".length,
Y = X,
Z
}