TypeScript/tests/baselines/reference/parserIndexMemberDeclaration10.types
Orta Therox 016d78b09e
Allow for class static vars to be called static (#44813)
* Allow for class static vars to be called static - re: #41127

* Add the baselines
2021-10-01 14:28:08 +01:00

9 lines
201 B
Plaintext

=== tests/cases/conformance/parser/ecmascript5/IndexMemberDeclarations/parserIndexMemberDeclaration10.ts ===
class C {
>C : C
static static [x: string]: string;
>static : any
>x : string
}