TypeScript/tests/baselines/reference/arrowFunctionInExpressionStatement2.types
2015-04-13 14:29:37 -07:00

9 lines
216 B
Plaintext

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