TypeScript/tests/cases/compiler/staticsInAFunction.ts

7 lines
108 B
TypeScript
Raw Normal View History

// @lib: es5
2014-07-13 01:04:16 +02:00
function boo{
static test()
static test(name:string)
static test(name?:any){}
}