TypeScript/tests/cases/compiler/overloadingStaticFunctionsInFunctions.ts
2018-05-03 14:18:50 -07:00

6 lines
105 B
TypeScript

// @lib: es5
function boo {
static test()
static test(name:string)
static test(name?:any){ }
}