TypeScript/tests/baselines/reference/noSelfOnVars.js

15 lines
176 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
//// [noSelfOnVars.ts]
function foo() {
function bar() { }
var x = bar;
}
//// [noSelfOnVars.js]
function foo() {
function bar() { }
2014-07-13 01:04:16 +02:00
var x = bar;
}