TypeScript/tests/baselines/reference/neverIntersectionNotCallable.types
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

12 lines
222 B
Plaintext

=== tests/cases/conformance/types/never/neverIntersectionNotCallable.ts ===
declare const f: { (x: string): number, a: "" } & { a: number }
>f : never
>x : string
>a : ""
>a : number
f()
>f() : any
>f : never