blob: 51a8e60348aba51a8e7f69cf3bdf418edf2d145a [file] [log] [blame]
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
}
}