ec55dddfcd
KT-462 Consider allowing initializing properties via property names when it is safe KT-598 Allow to use backing fields after this expression
8 lines
132 B
Plaintext
8 lines
132 B
Plaintext
class ReadNonexistent() {
|
|
val a: Int
|
|
get() = 1
|
|
|
|
{
|
|
val x = <!NO_BACKING_FIELD_CUSTOM_ACCESSORS!>$a<!>
|
|
}
|
|
} |