TypeScript/tests/cases/compiler/anyAsReturnTypeForNewOnCall.ts
2014-07-12 17:30:19 -07:00

14 lines
98 B
TypeScript

function Point(x, y) {
this.x = x;
this.y = y;
}
var o = new Point(3, 4);
var xx = o.x;