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