mirror of
https://github.com/swc-project/swc.git
synced 2024-11-28 02:29:04 +03:00
11 lines
156 B
TypeScript
11 lines
156 B
TypeScript
class C {
|
|
static [s: string]: number;
|
|
static [s: number]: 42
|
|
}
|
|
|
|
C["foo"] = 1
|
|
C.bar = 2;
|
|
const foo = C["foo"]
|
|
C[42] = 42
|
|
C[2] = 2;
|
|
const bar = C[42]
|