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

22 lines
492 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>();
~~~
!!! Cannot find name 'Foo'.
Foo.Bar<T>();
~~~
!!! Cannot find name 'Foo'.
Foo<T>.Bar();
~
!!! Expression expected.
~~~
!!! Cannot find name 'Foo'.
~
!!! Cannot find name 'T'.
Foo<T>.Bar<T>();
~
!!! Expression expected.
~~~
!!! Cannot find name 'Foo'.
~
!!! Cannot find name 'T'.