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

10 lines
289 B
Plaintext
Raw Normal View History

2014-07-13 01:04:16 +02:00
==== tests/cases/conformance/parser/ecmascript5/Generics/parserGenericsInInterfaceDeclaration1.ts (1 errors) ====
interface I<T> {
v: A<T>;
~~~~
!!! Cannot find name 'A'.
f1<T>(): T;
f2?<T>(): T;
<T>(): void;
new <T>(): void;
}