microsoft / microsoft/TypeScript
Incorrect generic inference inside a discriminated union
オープン
@weswigham がすでに取り組んでいます。
2021年9月10日 から。
Bug
Domain: check: Type Inference
Rescheduled
- 主要言語
- Go
- スター
- 111k
- フォーク
- 14.4k
- 平均マージ
- 1日 19時間
- マージ済み PR(30日)
- 117
説明
Bug Report
🔎 Search Terms
discrimated union generic extra property
🕗 Version & Regression Information
- This changed between versions 4.1.5 and 4.2.3
⏯ Playground Link
Playground link with relevant code
💻 Code
type Loadable<TValue> =
| {
state: "loading"
}
| {
state: "complete"
value: TValue
}
function mapLoadable<TValue>(loadable: Loadable<TValue>, map: (value: TValue) => void): void {
}
type AugmentedLoadable =
| {
state: "loading"
value: number
}
| {
state: "complete"
value: string
}
function mapAugmented(augmented: AugmentedLoadable) {
mapLoadable(augmented, () => {}) // ❌ Errors with "Argument of type 'AugmentedLoadable' is not assignable to parameter of type 'Loadable<number>'"
mapLoadable<string>(augmented, () => {}) // ✅ Works now that type is generic is specified
}
🙁 Actual behavior
TypeScript incorrectly infers that augmented should be assignable to Loadable<number> rather than a Loadable<string>, because we've added an unrelated value: number property to it. It can be nudged into working by writing out the generic type.
🙂 Expected behavior
TypeScript to infer the correct generic of string.
コントリビューションガイド
はじめの一歩
- issue を最後まで読み、次にプロジェクトのコントリビューションガイドを読みます。
- 着手することを issue にコメントします — 二人が同じ作業をするのを防げます。
- リポジトリをフォークし、ブランチを切って変更します。
- issue 番号を参照したプルリクエストを送ります。
評価
この issue はまだ評価されていません。