TypeScript/tests/baselines/reference/asyncConstructor_es6.js
2015-05-06 17:33:58 -07:00

12 lines
155 B
TypeScript

//// [asyncConstructor_es6.ts]
class C {
async constructor() {
}
}
//// [asyncConstructor_es6.js]
class C {
constructor() {
}
}