1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
tests/cases/conformance/parser/ecmascript5/Generics/parserGenericsInVariableDeclaration1.ts(1,9): error TS2304: Cannot find name 'Foo'.
tests/cases/conformance/parser/ecmascript5/Generics/parserGenericsInVariableDeclaration1.ts(2,9): error TS2304: Cannot find name 'Foo'.
tests/cases/conformance/parser/ecmascript5/Generics/parserGenericsInVariableDeclaration1.ts(4,9): error TS2304: Cannot find name 'Foo'.
tests/cases/conformance/parser/ecmascript5/Generics/parserGenericsInVariableDeclaration1.ts(5,9): error TS2304: Cannot find name 'Foo'.
tests/cases/conformance/parser/ecmascript5/Generics/parserGenericsInVariableDeclaration1.ts(7,9): error TS2304: Cannot find name 'Foo'.
tests/cases/conformance/parser/ecmascript5/Generics/parserGenericsInVariableDeclaration1.ts(8,9): error TS2304: Cannot find name 'Foo'.
==== tests/cases/conformance/parser/ecmascript5/Generics/parserGenericsInVariableDeclaration1.ts (6 errors) ====
var v : Foo<T> = 1;
~~~
!!! error TS2304: Cannot find name 'Foo'.
var v : Foo<T>= 1;
~~~
!!! error TS2304: Cannot find name 'Foo'.
var v : Foo<Bar<T>> = 1;
~~~
!!! error TS2304: Cannot find name 'Foo'.
var v : Foo<Bar<T>>= 1;
~~~
!!! error TS2304: Cannot find name 'Foo'.
var v : Foo<Bar<Quux<T>>> = 1;
~~~
!!! error TS2304: Cannot find name 'Foo'.
var v : Foo<Bar<Quux<T>>>= 1;
~~~
!!! error TS2304: Cannot find name 'Foo'.
|