TypeScript/tests/cases/compiler/es2018ObjectAssign.ts

6 lines
115 B
TypeScript
Raw Normal View History

// @target: es2018
const test = Object.assign({}, { test: true });
2018-06-12 00:29:52 +02:00
declare const p: Promise<number>;
p.finally();