swc/crates/swc_ecma_parser/tests/tsc/controlFlowSuperPropertyAccess.ts
2022-02-04 17:08:38 +09:00

10 lines
136 B
TypeScript

// @strictNullChecks: true
class B {
protected m?(): void;
}
class C extends B {
body() {
super.m && super.m();
}
}