mirror of
https://github.com/swc-project/swc.git
synced 2024-12-22 21:21:31 +03:00
11 lines
164 B
TypeScript
11 lines
164 B
TypeScript
|
export class Foo {
|
||
|
|
||
|
nested() {
|
||
|
class Foo {
|
||
|
static foo = 'foo';
|
||
|
static bar = Foo.foo;
|
||
|
}
|
||
|
|
||
|
return new Foo()
|
||
|
}
|
||
|
}
|