mirror of
https://github.com/swc-project/swc.git
synced 2024-11-28 11:13:43 +03:00
10 lines
89 B
TypeScript
10 lines
89 B
TypeScript
module M {
|
|
export abstract class A {}
|
|
|
|
new A;
|
|
}
|
|
|
|
import myA = M.A;
|
|
|
|
new myA;
|