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

19 lines
1.1 KiB
Text
Raw Normal View History

tests/cases/conformance/parser/ecmascript5/ErrorRecovery/TypeArgumentLists/TypeArgumentList1.ts(1,9): error TS1127: Invalid character.
tests/cases/conformance/parser/ecmascript5/ErrorRecovery/TypeArgumentLists/TypeArgumentList1.ts(1,1): error TS2304: Cannot find name 'Foo'.
tests/cases/conformance/parser/ecmascript5/ErrorRecovery/TypeArgumentLists/TypeArgumentList1.ts(1,5): error TS2304: Cannot find name 'A'.
tests/cases/conformance/parser/ecmascript5/ErrorRecovery/TypeArgumentLists/TypeArgumentList1.ts(1,7): error TS2304: Cannot find name 'B'.
tests/cases/conformance/parser/ecmascript5/ErrorRecovery/TypeArgumentLists/TypeArgumentList1.ts(1,11): error TS2304: Cannot find name 'C'.
2014-08-22 03:39:46 +02:00
==== tests/cases/conformance/parser/ecmascript5/ErrorRecovery/TypeArgumentLists/TypeArgumentList1.ts (5 errors) ====
2014-07-13 01:04:16 +02:00
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'.