TypeScript/tests/baselines/reference/parserMemberAccessExpression1.errors.txt
2014-07-12 17:30:19 -07:00

22 lines
492 B
Plaintext

==== 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'.