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

10 lines
98 B
TypeScript

module Midori
{
if (false) {
function Foo(src)
{
}
}
}