3 lines
99 B
Kotlin
3 lines
99 B
Kotlin
class A(val x: Int = 10, val b: String) {
|
|
constructor(i: Int) : this(x = 1, b = i.toString())
|
|
} |