Files
kotlin-fork/nj2k/testData/newJ2k/constructors/secondaryConstructorWithDefaultValues.kt
T
2019-09-29 11:39:36 +03:00

11 lines
198 B
Kotlin
Vendored

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