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

4 lines
65 B
TypeScript

// @declaration: true
function somefn() {
return somefn;
}