TypeScript/tests/baselines/reference/constructorReturningAPrimitive.js

40 lines
908 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
//// [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
2014-07-13 01:04:16 +02:00
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();