Potentially-undefined
value not flagged when destructuring union of empty tuple and array
#61424
Labels
Milestone
π Search Terms
"tuple destructuring", "tuple narrowing"
π Version & Regression Information
This bug appears to occur as far back as TS 3.3 up to the current nightly build, as tested in the Playground.
β― Playground Link
https://www.typescriptlang.org/play/?ts=5.8.2#code/C4TwDgpgBAggTnKBeWCCGIA8A7ArgWwCMI4A+KAHygG0BdSmgZ2DgEtsBzWgbgCheAJhADGAGzRxowgPbZmUCXABcqOH14y5wGmnopFfNADpg0gMot2HABQBKblAD0jqAFEAHpGHAIAlSThpOCNYb1w0URVsaSgAoJDAGXJ+TXlCZAUEagAGHl5CE3NLTjsHZzdPER8-WIR40OBwyJrA4KhAUHJ+XigoIA
π» Code
.d.ts
from Playground:π Actual behavior
When destructuring a value whose type is an array, an empty tuple, and a non-empty tuple, the destructured value isn't flagged as possibly
undefined
which caused a runtime error. The value is correctly flagged as possiblyundefined
when accessing it by index.π Expected behavior
When destructuring a value whose type is an array, an empty tuple, and a non-empty tuple, the destructured value should be flagged as potentially being
undefined
.Additional information about the issue
This seems related to #55661 except, in this case, the union contains a mix of tuples and an array.
The text was updated successfully, but these errors were encountered: