`fn`は[[void (TypeScript)|void]]型を返すはずなのに、boolean型 (`true`) を返している... がこれはエラーにならない。
```ts
const fn: () => void = () => true
const r = fn()
// ^?
console.log(r) // true
```
<button class="playground"><a href="https://www.typescriptlang.org/play?ts=5.1.3#code/MYewdgzgLgBAZmAXDAFAShgXgHwwG4gCWAJlqhjjFAE4CuApgFCOiSzVkLqMD0PMAmAD0A-C3AQQAG3oA6KSADmKahj5U6TRkA">Playground</a></button>