5 lines
87 B
Kotlin
Vendored
5 lines
87 B
Kotlin
Vendored
class A() {
|
|
constructor(x: Int): this()
|
|
constructor(y: Int, z: String) : this(y)
|
|
}
|