TypeScript/tests/baselines/reference/staticsNotInScopeInClodule.errors.txt

13 lines
356 B
Plaintext
Raw Normal View History

tests/cases/compiler/staticsNotInScopeInClodule.ts(6,13): error TS2304: Cannot find name 'x'.
2014-07-13 01:04:16 +02:00
==== 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'.
2014-07-13 01:04:16 +02:00
}