TypeScript/tests/baselines/reference/noSelfOnVars.types

15 lines
193 B
Text
Raw Normal View History

2014-08-15 23:33:16 +02:00
=== tests/cases/compiler/noSelfOnVars.ts ===
function foo() {
>foo : () => void
function bar() { }
>bar : () => void
var x = bar;
>x : () => void
>bar : () => void
}