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

16 lines
751 B
Plaintext

==== tests/cases/compiler/genericRecursiveImplicitConstructorErrors1.ts (1 errors) ====
export declare module TypeScript {
class PullSymbol { }
class PullSignatureSymbol <A,B,C> extends PullSymbol {
public addSpecialization<A,B,C>(signature: PullSignatureSymbol<A,B,C>, typeArguments: PullTypeSymbol<any,any,any>[]): void;
}
class PullTypeSymbol <A,B,C> extends PullSymbol {
public findTypeParameter<A,B,C>(name: string): PullTypeParameterSymbol<A,B,C>;
}
class PullTypeParameterSymbol <A,B,C> extends PullTypeSymbol {
~~~~~~~~~~~~~~
!!! Generic type 'PullTypeSymbol<A, B, C>' requires 3 type argument(s).
}
}