TypeScript/tests/baselines/reference/constructorReturningAPrimitive.js
2014-08-14 06:42:18 -07:00

40 lines
908 B
TypeScript

//// [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]
// 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
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();