swc/crates/swc_ecma_parser/tests/tsc/asyncArrowFunctionCapturesThis_es6.ts

8 lines
116 B
TypeScript

// @target: ES6
// @noEmitHelpers: true
class C {
method() {
var fn = async () => await this;
}
}