TypeScript/tests/cases/compiler/promiseIdentityWithAny.ts

10 lines
347 B
TypeScript
Raw Normal View History

2017-02-13 23:29:46 +01:00
export interface IPromise<T, V> {
2014-07-13 01:04:16 +02:00
then<U, W>(callback: (x: T) => IPromise<U, W>): IPromise<U, W>;
}
2017-02-13 23:29:46 +01:00
export interface Promise<T, V> {
2014-07-13 01:04:16 +02:00
then<U, W>(callback: (x: T) => Promise<any, any>): Promise<any, any>;
}
// Should be ok because signature type parameters get erased to any
var x: IPromise<string, number>;
var x: Promise<string, boolean>;