b40a888f1d
#KT-35093 Fixed #KT-35106 Fixed
12 lines
199 B
Kotlin
Vendored
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
|
|
}
|
|
} |