mirror of
https://github.com/swc-project/swc.git
synced 2024-12-23 21:54:36 +03:00
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") {}
|
|||
|
}
|