```ts /** @noSelf **/ declare class testClass { static [key: string]: () => void; static testFunction(): void; } testClass.testFunction(); testClass.testKey(); ``` ```lua testClass.testFunction() testClass:testKey() -- Incorrect ```