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

10 lines
289 B
Plaintext

==== 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;
}