TypeScript/tests/cases/conformance/es6/shorthandPropertyAssignment/objectLiteralShorthandPropertiesWithModule.ts
2014-11-14 16:30:03 -08:00

14 lines
136 B
TypeScript

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