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

12 lines
420 B
Text
Raw Normal View History

2014-07-13 01:04:16 +02:00
==== tests/cases/conformance/parser/ecmascript5/ErrorRecovery/TypeArgumentLists/parserX_TypeArgumentList1.ts (5 errors) ====
Foo<A,B,\ C>(4, 5, 6);
!!! error TS1127: Invalid character.
2014-07-13 01:04:16 +02:00
~~~
!!! error TS2304: Cannot find name 'Foo'.
2014-07-13 01:04:16 +02:00
~
!!! error TS2304: Cannot find name 'A'.
2014-07-13 01:04:16 +02:00
~
!!! error TS2304: Cannot find name 'B'.
2014-07-13 01:04:16 +02:00
~
!!! error TS2304: Cannot find name 'C'.