[[【TypeScript 3.7】Uncalled Function Checks]]が[[三項演算子 (JavaScript)|三項演算子]]でも有効になった。
[[TypeScript 3.8]]ではエラーにならなかった以下のコードでエラーが検出できる。
```ts
function isXXX(x: number): boolean {
return x > 10;
}
const ret = isXXX ? "ok" : "ng";
// -> error TS2774: This condition will always return true since the function is always defined. Did you mean to call it instead?
```