TypeScript/tests/cases/compiler/functionCall18.ts
2018-09-01 19:48:47 -04:00

5 lines
113 B
TypeScript

// Repro from #26835
declare function foo<T>(a: T, b: T);
declare function foo(a: {});
foo<string>("hello");