TypeScript/tests/baselines/reference/staticsNotInScopeInClodule.errors.txt
2014-09-12 13:35:07 -07:00

13 lines
356 B
Plaintext

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