mirror of
https://github.com/swc-project/swc.git
synced 2024-12-20 20:22:26 +03:00
11 lines
118 B
TypeScript
11 lines
118 B
TypeScript
// @target: esnext, es2022, es2015, es5
|
|
const a = 2;
|
|
|
|
class C {
|
|
static {
|
|
const a = 1;
|
|
|
|
a;
|
|
}
|
|
}
|