TypeScript/tests/baselines/reference/promiseIdentityWithAny.js
2014-07-12 17:30:19 -07:00

16 lines
421 B
JavaScript

//// [promiseIdentityWithAny.ts]
interface IPromise<T, V> {
then<U, W>(callback: (x: T) => IPromise<U, W>): IPromise<U, W>;
}
interface Promise<T, V> {
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>;
//// [promiseIdentityWithAny.js]
var x;
var x;