TypeScript/tests/baselines/reference/noSelfOnVars.types
2015-04-15 16:44:20 -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
}