TypeScript/tests/cases/conformance/es6/shorthandPropertyAssignment/objectLiteralShorthandPropertiesWithModuleES6.ts
2014-11-14 15:44:06 -08:00

14 lines
135 B
TypeScript

// @target: es6
module m {
export var x;
}
module m {
var z = x;
var y = {
a: x,
x
};
}