TypeScript/tests/baselines/reference/neverIntersectionNotCallable.js
Andrew Branch 56cf2e68e8
Never-reducing intersections are not untyped function call targets (#42917)
* Never-reducing intersections are not untyped function call targets

* Don’t attempt to reduce union types
2021-02-23 17:22:41 -08:00

8 lines
158 B
TypeScript

//// [neverIntersectionNotCallable.ts]
declare const f: { (x: string): number, a: "" } & { a: number }
f()
//// [neverIntersectionNotCallable.js]
f();