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

5 lines
91 B
TypeScript

function boo {
static test()
static test(name:string)
static test(name?:any){ }
}