mirror of
https://github.com/swc-project/swc.git
synced 2024-12-18 19:21:33 +03:00
16 lines
219 B
TypeScript
16 lines
219 B
TypeScript
// @target: es2015
|
|
|
|
class B {
|
|
#foo = class {
|
|
constructor() {
|
|
console.log("hello");
|
|
}
|
|
static test = 123;
|
|
};
|
|
#foo2 = class Foo {
|
|
static otherClass = 123;
|
|
};
|
|
}
|
|
|
|
|