9a4a3d1f49
^KT-56543 Merge-request: KT-MR-9299 Merged-by: Dmitrii Gridin <dmitry.gridin@jetbrains.com>
20 lines
394 B
Kotlin
Vendored
20 lines
394 B
Kotlin
Vendored
// IGNORE_REVERSED_RESOLVE
|
|
// !LANGUAGE: -ReadDeserializedContracts -UseCallsInPlaceEffect
|
|
// See KT-17479
|
|
|
|
class Test {
|
|
val str: String
|
|
init {
|
|
run {
|
|
this@Test.str = "A"
|
|
}
|
|
|
|
run {
|
|
// Not sure do we need diagnostic also here
|
|
this@Test.<!VAL_REASSIGNMENT!>str<!> = "B"
|
|
}
|
|
|
|
<!VAL_REASSIGNMENT!>str<!> = "C"
|
|
}
|
|
}
|