Files

8 lines
97 B
Kotlin
Vendored

class A(a: Int) {
constructor(b: String) : this(2)
constructor() : <caret>this("2")
}