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

11 lines
138 B
TypeScript
Raw Normal View History

// @target: esnext,es2015
// @noImplicitOverride: true
class A {
foo?: string;
}
class B extends A {
override foo = "string";
}