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

15 lines
193 B
Plaintext

=== tests/cases/compiler/noSelfOnVars.ts ===
function foo() {
>foo : () => void
function bar() { }
>bar : () => void
var x = bar;
>x : () => void
>bar : () => void
}