以下のように[[never型 (TypeScript)|never型]]を[[ユニオン型 (TypeScript)|ユニオン型]]に追加しても無視される。
```ts
type Hoge = string | never | number | never;
// ^? type Hoge = string | number
```
<button class="playground"><a href="https://www.typescriptlang.org/play?#code/C4TwDgpgBAEg9gc2gXigZ2AJwJYDsFQA+UuEAbhJkSQK4C2ARpdaRZgNwBQA9N1PwD0A-JyA">Playground</a></button>