TypeScript/tests/cases/compiler/shorthand-property-es5-es6.ts
Oskar Segersvärd 2e23010437 Add three tests
2016-03-09 18:43:21 +01:00

9 lines
154 B
TypeScript

// @target: ES5
// @module: ES6
// @declaration: true
// @filename: test.ts
import {foo} from './foo';
const baz = 42;
const bar = { foo, baz };