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

7 lines
96 B
TypeScript

class Clod {
static x = 10;
}
module Clod {
var p = x; // x isn't in scope here
}