```ts const arr = new Uint8Array(2).fill(1); ``` output: ``` ERROR TS2349: Cannot invoke an expression whose type lacks a call signature. Type '~lib/typedarray/Uint8Array' has no compatible call signatures. ``` But with parenthesis works: ```ts const arr = (new Uint8Array(2)).fill(1); ```