TypeScript/tests/cases/compiler/promiseIdentityWithConstraints.ts

10 lines
355 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 extends T, W extends V>(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 extends T, W extends V>(callback: (x: T) => Promise<U, W>): Promise<U, W>;
}
// Error because constraint V doesn't match
var x: IPromise<string, number>;
var x: Promise<string, boolean>;