Files
kotlin-fork/analysis/low-level-api-fir/testdata/diagnosticTraversalCounter/secondaryConstructor.kt
T

3 lines
99 B
Kotlin

class A(val x: Int = 10, val b: String) {
constructor(i: Int) : this(x = 1, b = i.toString())
}