TypeScript/tests/baselines/reference/noSelfOnVars.types
2014-08-25 10:55:22 -07:00

14 lines
193 B
Text

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