Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Function overloads don't play nice with unions of string literals #16053

Closed
fongandrew opened this issue May 23, 2017 · 2 comments
Closed

Function overloads don't play nice with unions of string literals #16053

fongandrew opened this issue May 23, 2017 · 2 comments
Labels
Duplicate An existing issue was already created

Comments

@fongandrew
Copy link

TypeScript Version: 2.3.2

Code

function test(a: "A"): any;
function test(b: "B"): any;
function test(ab: "A"|"B"): any { }

declare var u: "A"|"B";
test(u);

Expected behavior: No error

Actual behavior: Argument of type "A"|"B" is not assignable to type "B"

Ideally, TypeScript should detect that there is an overload for each variant of the union type and thus accept the union type as an argument.

@RyanCavanaugh
Copy link
Member

Duplicate #14107

@RyanCavanaugh RyanCavanaugh added the Duplicate An existing issue was already created label May 23, 2017
@mhegazy
Copy link
Contributor

mhegazy commented Jun 7, 2017

Automatically closing this issue for housekeeping purposes. The issue labels indicate that it is unactionable at the moment or has already been addressed.

@mhegazy mhegazy closed this as completed Jun 7, 2017
@microsoft microsoft locked and limited conversation to collaborators Jun 14, 2018
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
Duplicate An existing issue was already created
Projects
None yet
Development

No branches or pull requests

3 participants