TypeScript/tests/cases/compiler/promiseIdentity2.ts

11 lines
444 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<T, U>): Promise<T, W>;
}
// error because T is string in the first declaration, and T is boolean in the second
// Return type and callback return type are ok because T is any in this particular Promise
var x: IPromise<string, number>;
var x: Promise<any, string>;