TypeScript/tests/baselines/reference/typedGenericPrototypeMember.js
2014-08-15 15:49:09 -07:00

18 lines
394 B
JavaScript

//// [typedGenericPrototypeMember.ts]
class List<T> {
add(item: T) { }
}
List.prototype.add("abc"); // Valid because T is instantiated to any
//// [typedGenericPrototypeMember.js]
var List = (function () {
function List() {
}
List.prototype.add = function (item) {
};
return List;
})();
List.prototype.add("abc"); // Valid because T is instantiated to any