Files
kotlin-fork/nj2k/testData/newJ2k/issues/kt-19347.kt
T
2019-06-26 18:36:05 +03:00

16 lines
219 B
Kotlin
Vendored

package test
class TestMutltipleCtors {
private var x: Int
private var y = 0
constructor(x: Int) {
this.x = x
}
constructor(x: Int, y: Int) {
this.x = x
this.y = y
}
}