mirror of
https://github.com/swc-project/swc.git
synced 2024-11-28 11:13:43 +03:00
11 lines
126 B
TypeScript
11 lines
126 B
TypeScript
// @target: es5
|
|
// @module: esnext
|
|
|
|
export namespace N {
|
|
var x = 0;
|
|
}
|
|
|
|
export namespace N2 {
|
|
export interface I { }
|
|
}
|