TypeScript/tests/baselines/reference/funduleOfFunctionWithoutReturnTypeAnnotation.types
2014-08-15 14:37:48 -07:00

17 lines
254 B
Plaintext

=== 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
}