TypeScript/tests/baselines/reference/arrowFunctionInExpressionStatement2.types

9 lines
153 B
Plaintext
Raw Permalink Normal View History

2014-08-15 23:33:16 +02:00
=== tests/cases/compiler/arrowFunctionInExpressionStatement2.ts ===
module M {
>M : typeof M
2014-08-15 23:33:16 +02:00
() => 0;
>() => 0 : () => number
2015-04-13 21:36:11 +02:00
>0 : number
2014-08-15 23:33:16 +02:00
}