Files
kotlin-fork/nj2k/testData/newJ2k/constructors/secondaryConstructorWithDefaultValues2.kt
T
2019-04-03 11:24:19 +03:00

10 lines
188 B
Kotlin
Vendored

internal class A() {
private var s = ""
private var x = 0
@JvmOverloads
constructor(p: Int, s: String, x: Int = 1) : this() {
this.s = s
this.x = x
}
}