TypeScript/tests/baselines/reference/staticsNotInScopeInClodule.errors.txt
2014-07-12 17:30:19 -07:00

10 lines
243 B
Plaintext

==== tests/cases/compiler/staticsNotInScopeInClodule.ts (1 errors) ====
class Clod {
static x = 10;
}
module Clod {
var p = x; // x isn't in scope here
~
!!! Cannot find name 'x'.
}