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

13 lines
421 B
Plaintext
Raw Normal View History

tests/cases/compiler/genericCallWithoutArgs.ts(4,17): error TS1005: '(' expected.
tests/cases/compiler/genericCallWithoutArgs.ts(4,18): error TS1005: ')' expected.
==== tests/cases/compiler/genericCallWithoutArgs.ts (2 errors) ====
2014-07-13 01:04:16 +02:00
function f<X, Y>(x: X, y: Y) {
}
f<number,string>.
~
!!! error TS1005: '(' expected.
2014-07-13 01:04:16 +02:00
!!! error TS1005: ')' expected.