mirror of
https://github.com/swc-project/swc.git
synced 2024-11-29 11:47:21 +03:00
d2929d1ce6
**Related issue:** - Closes #9418
6 lines
110 B
TypeScript
6 lines
110 B
TypeScript
class Foo {
|
|
x = console.log(1)
|
|
constructor(public y = console.log(2)) {
|
|
console.log(3)
|
|
}
|
|
} |