Fix await for inherited promise

This commit is contained in:
Ron Buckton
2016-12-07 17:17:17 -08:00
parent b0bbbcbe07
commit 8dcbea9675
5 changed files with 50 additions and 1 deletions

View File

@@ -0,0 +1,7 @@
// @target: es2017
// @strictNullChecks: true
interface A extends Promise<string> {}
declare var a: A;
async function f() {
await a;
}