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

7 lines
108 B
TypeScript

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