Files
kotlin-fork/nj2k/testData/newJ2k/constructors/secondaryConstructorWithDefaultValues.kt
T
Dmitry Gridin b40a888f1d Formatter: fix line break between declarations with annotations
#KT-35093 Fixed
#KT-35106 Fixed
2019-11-26 19:40:51 +07:00

12 lines
199 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
}
}