mirror of
https://github.com/denoland/deno.git
synced 2025-01-02 04:19:10 -05:00
10 lines
125 B
TypeScript
10 lines
125 B
TypeScript
export class Base {
|
|
method() {
|
|
}
|
|
}
|
|
|
|
export class Derived extends Base {
|
|
// missing override keyword
|
|
method() {
|
|
}
|
|
}
|