TypeScript/tests/cases/compiler/classIndexer5.ts

9 lines
103 B
TypeScript

// @target: esnext
class Foo {
[key: string]: number;
#a: boolean;
#b = false;
}