Minimal example: ```ts function foo(): void {} const arr = [foo]; arr[0](); ``` Error: ``` ERROR TS2757: Type '() => void' has no call signatures. ```