8 lines
97 B
Kotlin
Vendored
8 lines
97 B
Kotlin
Vendored
class A(a: Int) {
|
|
constructor(b: String) : this(2)
|
|
|
|
constructor() : <caret>this("2")
|
|
}
|
|
|
|
|