TypeScript/tests/baselines/reference/noSelfOnVars.types

15 lines
193 B
Plaintext
Raw Normal View History

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