TypeScript/tests/cases/conformance/es2018/usePromiseFinally.ts
Yuichi Nukiyama 25525bc9d6 Change esnext.promise to es2018.promise (#22292)
* change esnest.promise to es2018.promise

* modify unit tests

* resolve conflict

* resolve conflict
2018-03-02 17:08:36 -08:00

6 lines
140 B
TypeScript

// @target: es5
// @lib: es6,es2018
let promise1 = new Promise(function(resolve, reject) {})
.finally(function() {});