π Search Terms
Destructuring
π Version & Regression Information
This changed in #56753
β― Playground Link
https://www.typescriptlang.org/play/?ssl=7&ssc=1&pln=1&pc=1#code/GYVwdgxgLglg9mABMOcAUBKRBvRAnAUyhDyQENEBfAKGogQGcpEBtMgGkQCNEBeRCgGpEARgC6fVgBYATGIDciRAHpliAKJ48cPIgAmMBmQAOxgmTwNEAdwAWBJCjiJDiegFt3DqAT2I4IFC09GBMrAAeIpwAniKSkRL8LCIyAMwKSqqIAHLOBFo6dIzMLOEyMTLx5YgAXpX80XKSyWkZKmoAqmAE4WbQvoj52rr2hNRAA
π» Code
function foo() { return a }
const [a, b = a + 1] = [42]; // Error disappears when foo is commented out
const [x1, y1 = x1] = [123]; // No error
const [x2, y2 = x2, z2 = y2] = [123]; // Unexpected error here
π Actual behavior
Unexpected errors.
π Expected behavior
No errors.
Additional information about the issue
No response
π Search Terms
Destructuring
π Version & Regression Information
This changed in #56753
β― Playground Link
https://www.typescriptlang.org/play/?ssl=7&ssc=1&pln=1&pc=1#code/GYVwdgxgLglg9mABMOcAUBKRBvRAnAUyhDyQENEBfAKGogQGcpEBtMgGkQCNEBeRCgGpEARgC6fVgBYATGIDciRAHpliAKJ48cPIgAmMBmQAOxgmTwNEAdwAWBJCjiJDiegFt3DqAT2I4IFC09GBMrAAeIpwAniKSkRL8LCIyAMwKSqqIAHLOBFo6dIzMLOEyMTLx5YgAXpX80XKSyWkZKmoAqmAE4WbQvoj52rr2hNRAA
π» Code
π Actual behavior
Unexpected errors.
π Expected behavior
No errors.
Additional information about the issue
No response