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

5 lines
140 B
TypeScript

//@noimplicitany: true
// No implicit any error given when newing a function (up for debate)
function Test() { }
var test = new Test();