Skip to content

Inconsistent type inference #16145

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

Closed
ylepikhov opened this issue May 30, 2017 · 2 comments
Closed

Inconsistent type inference #16145

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

Comments

@ylepikhov
Copy link

TypeScript Version: 2.3.3
See also playground

Code

interface I {

    p: string;
}

class C implements I {

    p: string;
    pp: number;
}

// no error
const c: Partial<C> = { p: "" };

function ff<T extends I>(v: Partial<T>) {

    // no error
    return v.p;
}

function f<T extends I>() {

    // error TS2322: Type '{ p: string; }' is not assignable to type 'Partial<T>'
    // why?
    const t: Partial<T> = { p: "" };
}

Expected behavior:
No error

Actual behavior:
Error at line: const t: Partial<T> = { p: "" };

@mhegazy
Copy link
Contributor

mhegazy commented May 30, 2017

Partial is not really a special type. it is just a mapping operation that happens on a type. This is already tracked by #12731

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

mhegazy commented Jun 14, 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 14, 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

2 participants