TypeScript/tests/cases/compiler/dynamicModuleTypecheckError.ts

9 lines
133 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
//@module: commonjs
export var x = 1;
for(var i = 0; i < 30; i++) {
x = i * 1000; // should not be an error here
}