02e327277e
In this commit reporting on member properties in init section of class is not supported (see KT-55528) ^KT-55493 Fixed
14 lines
285 B
Kotlin
Vendored
14 lines
285 B
Kotlin
Vendored
// !DUMP_CFG
|
|
class B(p0: String) {
|
|
val p1 = p0
|
|
val p2: Int = p0.length
|
|
var p3: String
|
|
constructor(p0: String, p1: String) : this(p0) {
|
|
p3 = p1
|
|
}
|
|
init {
|
|
<!VAL_REASSIGNMENT!>p1<!> = <!ASSIGNMENT_TYPE_MISMATCH!>p0.length<!>
|
|
p3 = ""
|
|
}
|
|
}
|