TypeScript/tests/baselines/reference/commentOnSimpleArrowFunctionBody1.types
2015-04-15 16:44:20 -07:00

17 lines
315 B
Plaintext

=== tests/cases/compiler/commentOnSimpleArrowFunctionBody1.ts ===
function Foo(x: any)
>Foo : (x: any) => void
>x : any
{
}
Foo(() =>
>Foo(() => // do something 127) : void
>Foo : (x: any) => void
>() => // do something 127 : () => number
// do something
127);
>127 : number