Files
kotlin-fork/idea/testData/inspections/convertSecondaryToPrimary/test.kt
T
2016-09-30 16:39:58 +03:00

19 lines
202 B
Kotlin
Vendored

class Single {
val x: Int
constructor(x: Int) {
this.x = x
}
}
class NotSingle {
val x: Int
constructor(): this(42)
constructor(x: Int) {
this.x = x
}
}