TypeScript/tests/cases/compiler/moduleUnassignedVariable.ts
2014-07-12 17:30:19 -07:00

8 lines
179 B
TypeScript

module Bar {
export var a = 1;
function fooA() { return a; } // Correct: return Bar.a
export var b;
function fooB() { return b; } // Incorrect: return b
}