TypeScript/tests/baselines/reference/funduleOfFunctionWithoutReturnTypeAnnotation.types

17 lines
254 B
Plaintext
Raw Normal View History

2014-08-15 23:33:16 +02:00
=== tests/cases/compiler/funduleOfFunctionWithoutReturnTypeAnnotation.ts ===
function fn() {
>fn : typeof fn
return fn.n;
>fn.n : number
>fn : typeof fn
>n : number
}
module fn {
>fn : typeof fn
export var n = 1;
>n : number
}