TypeScript/tests/baselines/reference/staticModifierAlreadySeen.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

14 lines
221 B
Plaintext

=== tests/cases/compiler/staticModifierAlreadySeen.ts ===
class C {
>C : C
static static foo = 1;
>static : any
>foo : number
>1 : 1
public static static bar() { }
>static : any
>bar : () => void
}