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

11 lines
461 B
Plaintext

=== tests/cases/conformance/types/never/neverIntersectionNotCallable.ts ===
declare const f: { (x: string): number, a: "" } & { a: number }
>f : Symbol(f, Decl(neverIntersectionNotCallable.ts, 0, 13))
>x : Symbol(x, Decl(neverIntersectionNotCallable.ts, 0, 20))
>a : Symbol(a, Decl(neverIntersectionNotCallable.ts, 0, 39))
>a : Symbol(a, Decl(neverIntersectionNotCallable.ts, 0, 51))
f()
>f : Symbol(f, Decl(neverIntersectionNotCallable.ts, 0, 13))