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

13 lines
336 B
Plaintext

==== tests/cases/compiler/genericCallWithoutArgs.ts (4 errors) ====
function f<X, Y>(x: X, y: Y) {
}
f<number,string>.
~
!!! Expression expected.
!!! Identifier expected.
~~~~~~
!!! Cannot find name 'number'.
~~~~~~
!!! Cannot find name 'string'.