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

37 lines
775 B
JavaScript

//// [genericWithOpenTypeParameters1.ts]
class B<T> {
foo(x: T): T { return null; }
}
var x: B<number>;
x.foo(1); // no error
var f = <T>(x: B<T>) => { return x.foo(1); } // error
var f2 = <T>(x: B<T>) => { return x.foo<T>(1); } // error
var f3 = <T>(x: B<T>) => { return x.foo<number>(1); } // error
var f4 = (x: B<number>) => { return x.foo(1); } // no error
//// [genericWithOpenTypeParameters1.js]
var B = (function () {
function B() {
}
B.prototype.foo = function (x) {
return null;
};
return B;
})();
var x;
x.foo(1);
var f = function (x) {
return x.foo(1);
};
var f2 = function (x) {
return x.foo(1);
};
var f3 = function (x) {
return x.foo(1);
};
var f4 = function (x) {
return x.foo(1);
};