02e327277e
In this commit reporting on member properties in init section of class is not supported (see KT-55528) ^KT-55493 Fixed
19 lines
301 B
Kotlin
Vendored
19 lines
301 B
Kotlin
Vendored
//KT-607 Val reassignment is not marked as an error
|
|
|
|
package kt607
|
|
|
|
fun foo(a: A) {
|
|
val o = object {
|
|
val y : Int
|
|
get() = 42
|
|
}
|
|
|
|
a.<!VAL_REASSIGNMENT!>z<!> = 23
|
|
o.<!VAL_REASSIGNMENT!>y<!> = 11 //Should be an error here
|
|
}
|
|
|
|
class A() {
|
|
val z : Int
|
|
get() = 3
|
|
}
|