TypeScript/tests/cases/compiler/moduleUnassignedVariable.ts

8 lines
179 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
module Bar {
export var a = 1;
function fooA() { return a; } // Correct: return Bar.a
export var b;
function fooB() { return b; } // Incorrect: return b
}