swc/crates/swc_ecma_parser/tests/tsc/staticIndexers.ts
2022-02-04 17:08:38 +09:00

13 lines
163 B
TypeScript

// static indexers not allowed
class C {
static [x: string]: string;
}
class D {
static [x: number]: string;
}
class E<T> {
static [x: string]: T;
}