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

bug with never type #32176

Closed
LongTengDao opened this issue Jun 29, 2019 · 1 comment
Closed

bug with never type #32176

LongTengDao opened this issue Jun 29, 2019 · 1 comment

Comments

@LongTengDao
Copy link
Contributor

LongTengDao commented Jun 29, 2019

TypeScript Version: 3.4.0-dev.201xxxxx

Search Terms:

Code

function assertString (value :any) :string {
    if ( typeof value==='string' ) { return value; }
    throwError();
}

function throwError () :never {
    throw Error();
}

Expected behavior:

no warning

Actual behavior:

warn except do like this:

function assertString (value :string) :string {
    if ( typeof value==='string' ) { return value; }
    throw throwError();
}

or:

function assertString (value :string) :string {
    if ( typeof value==='string' ) { return value; }
    return throwError();
}

Playground Link:

Related Issues:

@nattthebear
Copy link

Duplicate of #28859

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants