Skip to content

Variadic tuple with any[] spread incorrectly assignable to shorter variadic tuple targetΒ #50216

Description

Bug Report

πŸ”Ž Search Terms

variadic, tuple, any, assignable

πŸ•— Version & Regression Information

  • This changed between versions 4.1.5 and 4.2.x, it's probably a regression from this PR

⏯ Playground Link

Playground link with relevant code

πŸ’» Code

declare let tt3: [number, string, ...any[]];
let tt4: [number, ...number[]] = tt3; // it should error

const el = tt4[1]
//    ^? number
tt4[1] = tt3[1] // this errors correctly

πŸ™ Actual behavior

Unsound assignment is incorrectly allowed

πŸ™‚ Expected behavior

It should be a type error

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    BugA bug in TypeScriptHelp WantedYou can do this

    Type

    No type

    Projects

    No projects

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions