mirror of
https://github.com/swc-project/swc.git
synced 2024-12-19 03:31:45 +03:00
14 lines
241 B
TypeScript
14 lines
241 B
TypeScript
|
// @module: amd
|
|||
|
// @target: esnext
|
|||
|
// @filename: 0.ts
|
|||
|
export class B {
|
|||
|
print() { return "I am B"}
|
|||
|
}
|
|||
|
|
|||
|
// @filename: 2.ts
|
|||
|
async function foo() {
|
|||
|
class C extends (await import("./0")).B {}
|
|||
|
var c = new C();
|
|||
|
c.print();
|
|||
|
}
|
|||
|
foo();
|