TypeScript/tests/baselines/reference/functionInIfStatementInModule.types

15 lines
227 B
Text
Raw Normal View History

2014-08-15 23:33:16 +02:00
=== tests/cases/compiler/functionInIfStatementInModule.ts ===
module Midori
>Midori : typeof Midori
{
if (false) {
function Foo(src)
>Foo : (src: any) => void
>src : any
{
}
}
}