You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
classFoo<T>{constructor(readonlyx: T){}withX<T>(arg: T): Foo<T>{returnnewFoo(arg);}}classBar<T>{constructor(readonlyx: T){}withX<T>(arg: T): Bar<T>{returnnewBar(arg);}}functionfooOrBar<T>(arg: T): Foo<T>|Bar<T>{returnnewBar(arg);}functionassertString(x: string){if(typeofx!=='string')thrownewError('eek!');}functionf(): void{constx=fooOrBar(42);consty=x.withX(1);if(yinstanceofFoo){return;}assertString(y);// y is never, so this type checks OK}
π Actual behavior
assertString call gives no error
π Expected behavior
assertString gives an error, since neither Foo nor Bar are assignable to string
Additional information about the issue
This appears somewhat related to #202 (and having a way to force classes to be treated nominally would have avoided this issue for us). However, this issue does seem distinct in that it has a missing error even when classes are interpreted structurally.
The text was updated successfully, but these errors were encountered:
π Search Terms
collapsed union, instanceof, structural types, nominal types
π Version & Regression Information
β― Playground Link
https://www.typescriptlang.org/play/?downlevelIteration=true&importHelpers=true&target=99&module=1&ts=5.8.2#code/MYGwhgzhAEBiD28A8AVAfNA3gKGtY8AdhAC4BOArsCfGQBRkCmYAJkSAJ7QAeAXNCgCUWAL65oAdwCWJABYANVGjpgyAc35D+CZOizi8TEhTKFohRhLiIV6wQG5xYsdlCQYAIVVL9eAsXIqGnomVnYuPgFhTDE8aTlFdFsNKP4vMh8cPENGY1NzS2h05IcnbBcAMwpCaikiaArEAHkydKVkzUFtRCUAHza9LOgjEzMLK2LVNVLK6tr690YyEgBlcilCNTpI0jIN6d9oKQroOhIOAAdGeBPuaABCAF5H6AByXf3X4TkyeCtx6AAUTIv3or0YjAA1vcvo5ZjUSHUzBU6F1oAA3eBSFiHfykHjQF6NeAtYoAFgATKU8AB6GnZaAAPQA-OI8SRoFwXtwAHTxBR0ACM1OgdIZLPEx1OXA2pDANWuJx00QMw1yo0ceFi0EWyzWe02dA4DlF9JlMAs6KWABpoBB4NA5FIYOcrvhZIxgJCYE0ANLiMUMoNM1kiIA
π» Code
π Actual behavior
assertString
call gives no errorπ Expected behavior
assertString
gives an error, since neitherFoo
norBar
are assignable tostring
Additional information about the issue
This appears somewhat related to #202 (and having a way to force classes to be treated nominally would have avoided this issue for us). However, this issue does seem distinct in that it has a missing error even when classes are interpreted structurally.
The text was updated successfully, but these errors were encountered: