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

9 lines
153 B
Plaintext

=== tests/cases/compiler/arrowFunctionInExpressionStatement2.ts ===
module M {
>M : typeof M
() => 0;
>() => 0 : () => number
>0 : number
}