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

10 lines
243 B
Plaintext
Raw Normal View History

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
~
!!! Cannot find name 'x'.
}