TypeScript/tests/baselines/reference/typeOfOnTypeArg.errors.txt
2014-07-12 17:30:19 -07:00

11 lines
No EOL
260 B
Text

==== tests/cases/compiler/typeOfOnTypeArg.ts (1 errors) ====
var A = { '': 3 };
function fill<B extends typeof A>(f: B) {
}
fill(32);
~~~~~~~~
!!! Supplied parameters do not match any signature of call target.