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

38 lines
704 B
JavaScript

//// [constructorReturningAPrimitive.ts]
// technically not allowed by JavaScript but we don't have a 'not-primitive' constraint
// functionally only possible when your class is otherwise devoid of members so of little consequence in practice
class A {
constructor() {
return 1;
}
}
var a = new A();
class B<T> {
constructor() {
var x: T;
return x;
}
}
var b = new B<number>();
//// [constructorReturningAPrimitive.js]
var A = (function () {
function A() {
return 1;
}
return A;
})();
var a = new A();
var B = (function () {
function B() {
var x;
return x;
}
return B;
})();
var b = new B();