mirror of
https://github.com/swc-project/swc.git
synced 2024-12-25 06:36:08 +03:00
b887b30092
**Description:** This is required for https://github.com/swc-project/swc/pull/6981 and https://github.com/swc-project/swc/pull/6950
11 lines
167 B
TypeScript
11 lines
167 B
TypeScript
// @target: es6
|
|
class C {
|
|
constructor(y: any)
|
|
constructor(x: number) {
|
|
}
|
|
}
|
|
|
|
class D {
|
|
constructor(y: any)
|
|
constructor(x: number, z="hello") {}
|
|
} |