tests/cases/compiler/staticAsIdentifier.ts(2,5): error TS1071: 'static' modifier cannot appear on an index signature.


==== tests/cases/compiler/staticAsIdentifier.ts (1 errors) ====
    class C {
        static static
        ~~~~~~
!!! error TS1071: 'static' modifier cannot appear on an index signature.
        [x: string]: string;
    }