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

22 lines
604 B
Text
Raw Normal View History

2014-07-13 01:04:16 +02:00
==== tests/cases/conformance/parser/ecmascript5/Generics/parserMemberAccessExpression1.ts (8 errors) ====
Foo<T>();
~~~
!!! error TS2304: Cannot find name 'Foo'.
2014-07-13 01:04:16 +02:00
Foo.Bar<T>();
~~~
!!! error TS2304: Cannot find name 'Foo'.
2014-07-13 01:04:16 +02:00
Foo<T>.Bar();
~
!!! error TS1109: Expression expected.
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 'T'.
2014-07-13 01:04:16 +02:00
Foo<T>.Bar<T>();
~
!!! error TS1109: Expression expected.
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 'T'.
2014-07-13 01:04:16 +02:00