TypeScript/tests/baselines/reference/asyncConstructor_es5.js

13 lines
180 B
TypeScript

//// [asyncConstructor_es5.ts]
class C {
async constructor() {
}
}
//// [asyncConstructor_es5.js]
var C = (function () {
function C() {
}
return C;
}());