TypeScript/tests/cases/compiler/elaborationForPossiblyCallableTypeStillReferencesArgumentAtTopLevel.ts
Wesley Wigham 921863eb31
Use head message at top level of elaboration if elaborating via possible call (#27107)
* Use head message at top level of elaboration if elaborating via possible call

* Accept updated baseline
2018-09-15 13:24:22 -07:00

3 lines
84 B
TypeScript

declare var ohno: new () => number;
declare function ff(t: number): void;
ff(ohno)