Skip to content

Commit aaa62d6

Browse files
committed
Add test for class+namespace merging
1 parent c7008df commit aaa62d6

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
// @target: es2022
2+
// @module: commonjs
3+
4+
declare var deco: any;
5+
6+
@deco
7+
export class Example {
8+
static foo() {}
9+
}
10+
11+
export namespace Example {
12+
export const x = 1;
13+
}
14+
15+
Example.foo();

0 commit comments

Comments
 (0)