TypeScript/tests/baselines/reference/genericCallWithoutArgs.errors.txt

13 lines
336 B
Plaintext
Raw Normal View History

2014-07-13 01:04:16 +02:00
==== 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'.