TypeScript/tests/cases/compiler/moduleVariableArrayIndexer.ts
2014-07-12 17:30:19 -07:00

5 lines
106 B
TypeScript

module Bar {
export var a = 1;
var t = undefined[a][a]; // CG: var t = undefined[Bar.a][a];
}